natecovington
Forum Replies Created
-
WordPress 6.9 + WooCommerce 10.4.3
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Custom Fields DataTry something like this:
function render_givewp_field_api_fields( $payment_id ) { $occupation = give_get_meta( $payment_id, 'occupation', true ); $employer = give_get_meta( $payment_id, 'occupation', true ); if ( $occupation ) : ?> <div id="<?php echo wpautop( $occupation ); ?>" class="postbox"> <!--Replace 'Field Label' with a relevant label. --> <h3 class="handle"><?php esc_html_e( 'Occupation', 'give' ); ?></h3> <div class="inside" style="padding-bottom:10px;"> <?php echo wpautop( $occupation ); ?> </div> </div> <?php endif; } if ( $employer ) : ?> <div id="<?php echo wpautop( $employer ); ?>" class="postbox"> <!--Replace 'Field Label' with a relevant label. --> <h3 class="handle"><?php esc_html_e( 'Employer', 'give' ); ?></h3> <div class="inside" style="padding-bottom:10px;"> <?php echo wpautop( $employer ); ?> </div> </div> <?php endif; } add_action( 'give_view_donation_details_billing_after', 'render_givewp_field_api_fields', 10, 1 );- This reply was modified 3 years, 8 months ago by natecovington.
- This reply was modified 3 years, 8 months ago by natecovington.
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Update font-awsomeAfter updating the theme, I had to change the font-family in my child theme CSS:
Old:
font-family: “FontAwesome”;New:
font-family: “Font Awesome 5 Free”;- This reply was modified 6 years ago by natecovington.
Forum: Plugins
In reply to: [Search & Filter] Premium or Free version1. Yes, if you output the shortcode for the search area in a sidebar widget area
2. Yes, if you adjust the search & filter parameters accordingly. It’s very customizable.
Forum: Plugins
In reply to: [Search & Filter] Search & Filter Results PageYes, you need to make a template for this:
/wp-content/themes/your-theme/search-filter/results.php
Then you can add your page numbers with some PHP like this:
Page <?php echo $query->query_vars['paged']; ?> of <?php echo $query->max_num_pages; ?>Forum: Installing WordPress
In reply to: Some error after installingHi,
Running into this same issue on a fresh install:
http://worldwariiwoman.com/blog/Fatal error: Cannot unset string offsets in /home/worldwar/public_html/blog/wp-includes/widgets.php on line 358
How did you resolve this issue?
Any help would be appreciated.
Thanks,
-Nate