Changeset 267177
- Timestamp:
- 04/12/2025 08:51:56 AM (8 months ago)
- Location:
- ngo-fundraiser/0.3.5
- Files:
-
- 6 edited
- 1 copied
-
. (copied) (copied from ngo-fundraiser/0.3.4)
-
custom-option.php (modified) (1 diff)
-
inc/customizer.php (modified) (3 diffs)
-
languages/ngo-fundraiser.pot (modified) (9 diffs)
-
page.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ngo-fundraiser/0.3.5/custom-option.php
r260098 r267177 282 282 $ngo_fundraiser_theme_css .='}'; 283 283 } 284 285 /*------------------ Footer CSS -------------------*/ 286 $ngo_fundraiser_footer_bg_color = get_theme_mod( 'ngo_fundraiser_footer_bg_color'); 287 if($ngo_fundraiser_footer_bg_color != '' ){ 288 $ngo_fundraiser_theme_css .='#colophon {'; 289 $ngo_fundraiser_theme_css .='background-color: '.esc_attr($ngo_fundraiser_footer_bg_color).'; '; 290 $ngo_fundraiser_theme_css .='}'; 291 } 292 293 $ngo_fundraiser_footer_content_color = get_theme_mod( 'ngo_fundraiser_footer_content_color'); 294 if($ngo_fundraiser_footer_content_color != ''){ 295 $ngo_fundraiser_theme_css .='#colophon, #colophon a, #colophon h5, #colophon .widget #wp-calendar caption {'; 296 $ngo_fundraiser_theme_css .='color: '.esc_attr($ngo_fundraiser_footer_content_color).';'; 297 $ngo_fundraiser_theme_css .='}'; 298 } 299 300 /*------------------ Copyright CSS -------------------*/ 301 $ngo_fundraiser_copyright_text_color = get_theme_mod( 'ngo_fundraiser_copyright_text_color'); 302 if($ngo_fundraiser_copyright_text_color != ''){ 303 $ngo_fundraiser_theme_css .='#colophon .site-info a, #colophon .site-info span {'; 304 $ngo_fundraiser_theme_css .='color: '.esc_attr($ngo_fundraiser_copyright_text_color).';'; 305 $ngo_fundraiser_theme_css .='}'; 306 } -
ngo-fundraiser/0.3.5/inc/customizer.php
r263388 r267177 1095 1095 ) 1096 1096 )); 1097 1098 // Page Settings 1099 $wp_customize->add_section('ngo_fundraiser_page_settings',array( 1100 'title' => esc_html__('Page Settings','ngo-fundraiser'), 1101 'priority' => 40, 1102 )); 1103 1104 $wp_customize->add_setting( 'ngo_fundraiser_single_page_sidebar_layout', array( 1105 'default' => 'No Sidebar', 1106 'sanitize_callback' => 'ngo_fundraiser_sanitize_choices' 1107 )); 1108 $wp_customize->add_control( 'ngo_fundraiser_single_page_sidebar_layout', array( 1109 'section' => 'ngo_fundraiser_page_settings', 1110 'type' => 'select', 1111 'label' => __( 'Single Page Sidebar Position', 'ngo-fundraiser' ), 1112 'choices' => array( 1113 'No Sidebar' => __( 'No Sidebar', 'ngo-fundraiser' ), 1114 'Right Side' => __( 'Right Side', 'ngo-fundraiser' ), 1115 'Left Side' => __( 'Left Side', 'ngo-fundraiser' ), 1116 ) 1117 )); 1097 1118 1098 1119 // Footer … … 1125 1146 )); 1126 1147 1148 $wp_customize->add_setting( 'ngo_fundraiser_footer_bg_color', array( 1149 'default' => '', 1150 'sanitize_callback' => 'sanitize_hex_color' 1151 )); 1152 $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'ngo_fundraiser_footer_bg_color', array( 1153 'label' => __('Footer Background Color', 'ngo-fundraiser'), 1154 'section' => 'ngo_fundraiser_site_footer_section', 1155 'settings' => 'ngo_fundraiser_footer_bg_color', 1156 ))); 1157 1158 $wp_customize->add_setting( 'ngo_fundraiser_footer_content_color', array( 1159 'default' => '', 1160 'sanitize_callback' => 'sanitize_hex_color' 1161 )); 1162 $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'ngo_fundraiser_footer_content_color', array( 1163 'label' => __('Footer Content Color', 'ngo-fundraiser'), 1164 'section' => 'ngo_fundraiser_site_footer_section', 1165 'settings' => 'ngo_fundraiser_footer_content_color', 1166 ))); 1167 1127 1168 $wp_customize->add_setting('ngo_fundraiser_footer_widget_heading_alignment',array( 1128 1169 'default' => 'Left', … … 1191 1232 ), 1192 1233 ) ); 1234 1235 $wp_customize->add_setting( 'ngo_fundraiser_copyright_text_color', array( 1236 'default' => '', 1237 'sanitize_callback' => 'sanitize_hex_color' 1238 )); 1239 $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'ngo_fundraiser_copyright_text_color', array( 1240 'label' => __('Copyright Text Color', 'ngo-fundraiser'), 1241 'section' => 'ngo_fundraiser_site_footer_section', 1242 'settings' => 'ngo_fundraiser_copyright_text_color', 1243 ))); 1193 1244 1194 1245 // Pro Version -
ngo-fundraiser/0.3.5/languages/ngo-fundraiser.pot
r263388 r267177 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: NGO Fundraiser 0.3. 4\n"5 "Project-Id-Version: NGO Fundraiser 0.3.5\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/ngo-fundraiser\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-0 3-09T06:40:33+05:30\n"12 "POT-Creation-Date: 2025-04-11T19:17:35+05:30\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 823 823 #: inc/customizer.php:854 824 824 #: inc/customizer.php:916 825 #: inc/customizer.php:12 01825 #: inc/customizer.php:1252 826 826 msgid "Customizer Options" 827 827 msgstr "" … … 965 965 #: inc/customizer.php:541 966 966 #: inc/customizer.php:827 967 #: inc/customizer.php:11 39968 #: inc/customizer.php:11 55969 #: inc/customizer.php:1 190967 #: inc/customizer.php:1180 968 #: inc/customizer.php:1196 969 #: inc/customizer.php:1231 970 970 msgid "Right" 971 971 msgstr "" … … 973 973 #: inc/customizer.php:542 974 974 #: inc/customizer.php:825 975 #: inc/customizer.php:11 37976 #: inc/customizer.php:11 53977 #: inc/customizer.php:1 188975 #: inc/customizer.php:1178 976 #: inc/customizer.php:1194 977 #: inc/customizer.php:1229 978 978 msgid "Left" 979 979 msgstr "" … … 981 981 #: inc/customizer.php:543 982 982 #: inc/customizer.php:826 983 #: inc/customizer.php:11 38984 #: inc/customizer.php:11 54985 #: inc/customizer.php:1 189983 #: inc/customizer.php:1179 984 #: inc/customizer.php:1195 985 #: inc/customizer.php:1230 986 986 msgid "Center" 987 987 msgstr "" … … 1209 1209 #: inc/customizer.php:1024 1210 1210 #: inc/customizer.php:1093 1211 #: inc/customizer.php:1114 1211 1212 msgid "Right Side" 1212 1213 msgstr "" … … 1214 1215 #: inc/customizer.php:1025 1215 1216 #: inc/customizer.php:1094 1217 #: inc/customizer.php:1115 1216 1218 msgid "Left Side" 1217 1219 msgstr "" … … 1243 1245 1244 1246 #: inc/customizer.php:1100 1247 msgid "Page Settings" 1248 msgstr "" 1249 1250 #: inc/customizer.php:1111 1251 msgid "Single Page Sidebar Position" 1252 msgstr "" 1253 1254 #: inc/customizer.php:1113 1255 msgid "No Sidebar" 1256 msgstr "" 1257 1258 #: inc/customizer.php:1121 1245 1259 msgid "Footer" 1246 1260 msgstr "" 1247 1261 1248 #: inc/customizer.php:11 081262 #: inc/customizer.php:1129 1249 1263 msgid "Footer Background Image" 1250 1264 msgstr "" 1251 1265 1252 #: inc/customizer.php:11 191266 #: inc/customizer.php:1140 1253 1267 msgid "Footer Background Image Position" 1254 1268 msgstr "" 1255 1269 1256 #: inc/customizer.php:11 211270 #: inc/customizer.php:1142 1257 1271 msgid "fixed" 1258 1272 msgstr "" 1259 1273 1260 #: inc/customizer.php:11 221274 #: inc/customizer.php:1143 1261 1275 msgid "scroll" 1262 1276 msgstr "" 1263 1277 1264 #: inc/customizer.php:1134 1278 #: inc/customizer.php:1153 1279 msgid "Footer Background Color" 1280 msgstr "" 1281 1282 #: inc/customizer.php:1163 1283 msgid "Footer Content Color" 1284 msgstr "" 1285 1286 #: inc/customizer.php:1175 1265 1287 msgid "Footer Widget Heading Alignment" 1266 1288 msgstr "" 1267 1289 1268 #: inc/customizer.php:11 501290 #: inc/customizer.php:1191 1269 1291 msgid "Footer Widget Content Alignment" 1270 1292 msgstr "" 1271 1293 1272 #: inc/customizer.php:1 1651294 #: inc/customizer.php:1206 1273 1295 msgid "Show / Hide Copyright" 1274 1296 msgstr "" 1275 1297 1276 #: inc/customizer.php:1 1731298 #: inc/customizer.php:1214 1277 1299 msgid "Replace the footer text" 1278 1300 msgstr "" 1279 1301 1280 #: inc/customizer.php:1 1851302 #: inc/customizer.php:1226 1281 1303 msgid "Copyright Content Alignment" 1304 msgstr "" 1305 1306 #: inc/customizer.php:1240 1307 msgid "Copyright Text Color" 1282 1308 msgstr "" 1283 1309 -
ngo-fundraiser/0.3.5/page.php
r219665 r267177 16 16 17 17 <div id="skip-content" class="container"> 18 <div id="primary" class="content-area"> 19 <main id="main" class="site-main module-border-wrap mb-4"> 20 <?php 21 while (have_posts()) : the_post(); 18 <div class="row"> 19 <?php if (get_theme_mod('ngo_fundraiser_single_page_sidebar_layout','No Sidebar') == 'Left Side'){?> 20 <?php get_sidebar(); ?> 21 <?php }?> 22 <div id="primary" class="content-area <?php if (get_theme_mod('ngo_fundraiser_single_page_sidebar_layout','No Sidebar') == 'Left Side' || get_theme_mod('ngo_fundraiser_single_page_sidebar_layout','No Sidebar') == 'Right Side'){?> col-lg-9 col-md-8 <?php }?>"> 23 <main id="main" class="site-main module-border-wrap mb-4"> 24 <?php 25 while (have_posts()) : the_post(); 22 26 23 get_template_part('template-parts/content', 'page');27 get_template_part('template-parts/content', 'page'); 24 28 25 // If comments are open or we have at least one comment, load up the comment template.26 if (comments_open() || get_comments_number()) :27 comments_template();28 endif;29 // If comments are open or we have at least one comment, load up the comment template. 30 if (comments_open() || get_comments_number()) : 31 comments_template(); 32 endif; 29 33 30 endwhile; // End of the loop. 31 ?> 32 </main> 34 endwhile; // End of the loop. 35 ?> 36 </main> 37 </div> 38 <?php if (get_theme_mod('ngo_fundraiser_single_page_sidebar_layout','No Sidebar') == 'Right Side'){?> 39 <?php get_sidebar(); ?> 40 <?php }?> 33 41 </div> 34 42 </div> -
ngo-fundraiser/0.3.5/readme.txt
r263388 r267177 4 4 Tested up to: 6.6 5 5 Requires PHP: 7.2 6 Stable tag: 0.3. 46 Stable tag: 0.3.5 7 7 License: GNU General Public License v3.0 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 219 219 * Added show/hide single post tag option in customizer. 220 220 * Updated POT file. 221 222 = 0.3.5 223 224 * Added footer background color option in customizer. 225 * Added footer content color option in customizer. 226 * Added copyright text color option in customizer. 227 * Added single page sidebar layout option in customizer. 228 * Updated POT file. -
ngo-fundraiser/0.3.5/style.css
r263388 r267177 6 6 Author URI: https://www.themagnifico.net/ 7 7 Description: NGO Fundraiser is a heartwarming and impactful digital solution designed to support the noble missions of non-profit organizations. With a warm and inviting visual design, this theme creates a virtual space that mirrors the compassion and dedication of the NGOs and charities it serves. At its core, the NGO Fundraiser Theme is a facilitator of generosity and positive change. It provides an accessible platform for NGOs, nonprofits, and charitable foundations to share their stories, projects, and initiatives with the world. Through a well-organized layout, the theme ensures that visitors can easily understand the organization’s mission, values, and the impactful work they do in various social welfare sectors. One of the standout features is its intuitive donation system. The theme simplifies the process of contributing to a cause, making it easy for supporters to donate to the organization’s efforts. Additionally, the seamless integration of donate buttons and forms ensures a hassle-free experience for those who wish to make a difference through fundraising. Multimedia elements are seamlessly incorporated into this theme to amplify the emotional connection. High-quality images, compelling videos, and heartfelt stories can be shared, creating a narrative that resonates with potential donors and supporters. This visual storytelling aspect adds a personal touch, allowing NGOs to effectively communicate the real-world impact of their work, whether it's aiding refugees, supporting community welfare, or driving other social causes. NGO Fundraiser is not just a theme; it’s a powerful tool for non-profit and charity organizations to engage with their audience, encourage volunteer participation, and drive meaningful donations to fuel their missions. 8 Version: 0.3. 48 Version: 0.3.5 9 9 Requires at least: 5.0 10 10 Tested up to: 6.6
Note: See TracChangeset
for help on using the changeset viewer.