pcooper114
Forum Replies Created
-
I removed line 30 and that fixed the issue. I’ll figure out who put it there and make sure we don’t need it (when I get around to it 😉 )
I appreciate your guidance, I never would have found that!
Nothing completely obvious to me. That prefix may be park of something custom? I’m not sure…
I did find this in Functions.php
add_filter(‘pre_get_posts’, ‘wds_cpt_search’);
So I need to remove that?
There are several people that make daily changes to the site, so that would be impossible to pinpoint. We do, however, have a staging site. The searches all work in the stage site, so I compared the plugin list, and any plugins that exist on the live site that aren’t on the staging site, I deactivated them and tested. That didn’t change anything 🙁
Hm, I don’t know enough about hooks to know for sure either way. But that is insightful. It’s just weird to me that it is only returning ONE particular post type everywhere.
Forum: Fixing WordPress
In reply to: Saving email replies to database?Right, I’m familiar with that plugin. But can the user REPLY to emails and have that response saved?
Forum: Plugins
In reply to: [WooCommerce] Step by Step variations with corresponding images?Thanks Danny, this help!
Are you by chance a developer? This is a little over my pay grade…
Forum: Plugins
In reply to: [WooCommerce] Add categories and thumbnail to invoice?Sorry, i mean on the email invoice that woocommerce sends.
Forum: Plugins
In reply to: [WooCommerce] Custom image field for productsWeird, suddenly it is working now… THanks for being willing to help!
Forum: Plugins
In reply to: [WooCommerce] Custom image field for productsIt’s definitely saving because I’m able to make the flag URL appear. Check it at http://everyboutique.com/product/silver-silk-dress/
Forum: Plugins
In reply to: Custom Field passing an Image URLFor the record, here is the field creation in my functions file:
add_action( ‘woocommerce_product_options_general_product_data’, ‘woo_add_custom_general_fields’ );
add_action( ‘woocommerce_process_product_meta’, ‘woo_add_custom_general_fields_save’ );
function woo_add_custom_general_fields() {
global $woocommerce, $post;
echo ‘<div class=”options_group”>’;
// Text Field
woocommerce_wp_text_input(
array(
‘id’ => ‘location_field’,
‘label’ => __( ‘Location’, ‘woocommerce’ ),
‘placeholder’ => ‘Location’,
‘desc_tip’ => ‘true’,
‘description’ => __( ‘Enter the location here.’, ‘woocommerce’ )
)
);// Text Field
woocommerce_wp_text_input(
array(
‘id’ => ‘flag_field’,
‘label’ => __( ‘Flag URL’, ‘woocommerce’ ),
‘placeholder’ => ‘http://’,
‘desc_tip’ => ‘true’,
‘description’ => __( ‘Enter the flag URL here.’, ‘woocommerce’ )
)
);
echo ‘</div>’;
}function woo_add_custom_general_fields_save( $post_id ){
// Text Field
$woocommerce_text_field = $_POST[‘location_field’];
if( !empty( $woocommerce_text_field ) )
update_post_meta( $post_id, ‘location_field’, esc_attr( $woocommerce_text_field ) );// Text Field
$woocommerce_text_field = $_POST[‘flag_field’];
if( !empty( $woocommerce_text_field ) )
update_post_meta( $post_id, ‘flag_field’, esc_attr( $woocommerce_text_field ) );
}Why can I get the location to display but not the flag image?
Thanks Pete, I’ve looked at this extension before and I can’t see anywhere that this will add product category restrictions to users though.
Forum: Plugins
In reply to: [azurecurve Toggle Show/Hide] Working, but only sometimesI’ve been looking in Firefox, which is what my client is using.
Is there anything in particular that might be stopping jquery from loading?
Forum: Plugins
In reply to: [LDD Business Directory] Categories linkHey Mark,
Any idea when this functionality will become available? I’m working on a site for a client that requires to be able to link to the categories, however, if I can’t get it functioning within a week or two, I’ll have to move to a different plugin, which I really don’t want to do. I like yours!
Thanks!
PatrickForum: Plugins
In reply to: [The Events Calendar] Change event title size in widgetYep! I’m good! Thanks!