agod
Forum Replies Created
-
Yes that was one of my errors. “This Plugin Has Invalid Headers”. Thank you for the assistance, all is well. Until we meet again.
I love it when a plan comes together – Hannibal, The A-Team
Literally, about 20 minutes ago it was not working after new installs and updates.. Now everything seems to be just fine I think I just got your latest update..
WOW! We were working Freesoul at the same time ??
Thank you!
I deleted this WordPress plugin to install an older version but the new version continues to show on the front end.
Steps I have taken:
I deleted the plugin folder.
Searched the database for any tables left behind by the plugin. No tables.
Searched the plugins scripts to see how it connects to database. I searched for the terms $wpdb, set_option() and update_option(). I only found update_option() in this plugins scripts.
I found the following in different locations in this plugins folder:
update_option( $option_key, $savedOptions );
update_option( $this->tabs[ $tab_id ][ ‘option_key’ ], array() );
update_option( $option_key, $option_data );
update_option( ‘xoo_’.$this->slug.’_theme_templates_data’, $tempData );
update_option( ‘xoo-ml-before-2’, ‘yes’ );
update_option( $version_option, XOO_WSC_VERSION);
And this is where I am stuck… Does any of the above code store info in the database that would prevent me from getting the old version of the plugin back?
My research has me looking in the direction of _options table but I am not sure what to do there or if that is where I need to be…
How do I get the old version of this plugin installed?
Forum: Plugins
In reply to: [WooCommerce] Filter widget and search page@riaanknoetze WooCommerce does not have a dedicated “Search” page.
If the WooCommerce Product Category Widget will show up on the search page why does the Filter Products by Attribute not show up in the side bar on the search page?
How can I make it show up on the search page?
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Infinite loading in shopIf you are familiar with adding code to your themes functions.php you can try this code.
add_filter( ‘post_class’, ‘filter_product_post_class’, 10, 3 );
function filter_product_post_class( $classes, $class, $product_id ){
if( in_the_loop() )
$classes[] = ‘mainproduct’;
return $classes;
}On this line enter the setting class you have under ITEM SELECTOR in the infinite scrolling settings
$classes[] = ‘PUT YOUR CLASS HERE’;
- This reply was modified 4 years, 1 month ago by agod.
@sandervdnd it’s been two months since your post. Have you used service in a production environment? If so how is it working for you?
@adamkheckler it is considered providing support if you tell me of any known conflicts that you may know of between the two plugins?
@cubemedia can you post back if your client finds a solution?
- This reply was modified 4 years, 1 month ago by agod.
@makewebbetter, as I suspected the plugin will not redeem points at checkout when the checkout item is a subscription item.
I have left a message at the link above concerning assistance needed. I didn’t get a response. Does pro support have any other contact info?
Thank you. Again I want to reiterate this is a very well thought out cart. I was looking at several carts and this one beat them all! Job very well done xootix!
Did you find a solution? We have the same issue.
Forum: Plugins
In reply to: [WooCommerce] Single Product Page Product Summary’s Position in portrait ViewForum: Plugins
In reply to: [WooCommerce] Remove hooks on specific pages.In the WooCommerce child theme functions.php page I placed this code:
function remove_woo_commerce_hooks() {
global $da_woocommerce;
remove_action( ‘woocommerce_after_single_product_summary’, array( $da_woocommerce, ‘output_related_products’ ), 15 );
}
add_action( ‘after_setup_theme’, ‘remove_woo_commerce_hooks’ );
It removes it from all product pages.
How would you code it to remove it from a specific product, ie remove it from product page id 123 and not product page id 1234
Forum: Fixing WordPress
In reply to: Remove hooks on specific pages.Moved