Mangesh
Forum Replies Created
-
This tripped me up as well.
Why is the Responsive Menu plugin defaulting to hiding the wordpress admin toolbar? This is the wrong default setting for this plugin IMO. Shouldn’t the default be Adjust or None?Forum: Plugins
In reply to: [Google for WooCommerce] Mapping desired Google AttributesI’ve created an an idea to cover this request: https://ideas.woocommerce.com/forums/133476-woocommerce/suggestions/43736268-ability-to-map-product-attributes-to-google-conten
I am running into an issue with missing shipping costs which can be solved if I could map product_shipping_class attribute to the shipping_label attribute in Google Content API.
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Plugin is crashing siteHad the same issue. Error went away after I deleted the WooCommerce Follow Up Emails plugin.
Had to physically delete the plugin folder as I lost wp-adminThanks for the suggestion Alex. Can you tell me where to add the shortcode?
I am using Contact Form 7, and I tried adding the CF7 shortcode in the Message field (Content Settings > Global Content > Message), but it simply displays as plain text and does not get evaluated. I am using the default ‘Hardwork’ theme.Forum: Plugins
In reply to: [Accept Stripe Payments] Enhancement: Product-specific result page?Awesome! Thanks for the quick response @mra13 and @alexanderfoxc.
Looking forward to the update. And the current shortcode option will work for me too.
- This reply was modified 8 years, 3 months ago by Mangesh.
Forum: Plugins
In reply to: [Reading Time WP] It shows 0 Minute ?If you are comfortable with PHP, you can modify the code (or write your own plugin/shortcode lest it is overwritten by an update) by replacing
this line:
$strippedContent = strip_shortcodes($rtContent);
with this line:
$strippedContent = preg_replace( ‘/\[[^\]]*\]/’, ”, $rtContent);
This removes the shortcode tags while retaining any content enclosed by the shortcode. (warning: not extensively tested)
Forum: Plugins
In reply to: [WooCommerce] Product categories “duplicated” in 3.0.6 and 3.0.7Somehow, the database has duplicate entries in wp_termmeta.
Removing the duplicates solves the problem.
Not sure yet how the duplicates got created (I do not use any translation plugins).The following query can be used to find duplicates:
SELECT count(*), tt.term_id, tm.meta_key
FROM wp_term_taxonomy tt, wp_terms t, wp_termmeta tm
where tt.taxonomy = ‘product_cat’
AND t.term_id = tt.term_id
and tm.term_id = tt.term_id
group by tt.term_id, tm.meta_key
limit 100Forum: Plugins
In reply to: [WooCommerce] Product categories “duplicated” in 3.0.6 and 3.0.7I know you would like to receive the ‘system status’ report to help diagnose issues.
I would be happy to send it to you via email.
But I am not comfortable posting it in an open forum. There is too much information about the system that can likely be exploited by someone wishing to compromise the a WordPress website.
Hi,
I have sent you an email at [email protected]
The fix is really quite simple – you can simply do a global search/replace and change the 37 occurrences of “http:” to “https:” in the plugin’s code.
Regards
FYI for those encountering the same problem – even though this thread is marked as “Resolved”, the issue is not yet fixed as of version 3.14.0
Forum: Fixing WordPress
In reply to: 732 Internal Server ErrorHi,
Was anybody able to fix to this problem? I have a forum and only one user in India is reporting this problem.
Thanks
- This reply was modified 9 years, 8 months ago by Mangesh.
The “upgrade warning in red” is displayed only on the plugin listing page and not on the WordPress Updates page.
So if you are used to updating plugins from the Updates page you will never see the warning.Hope this helps.
Hi Chad,
Firstly, thanks for the super fast response!
You are correct, clicking on the “Update Now” button is how I had updated the first time around. Second time around was by deleting the plugins/wp-members dir and FTP’ing/unzipping the zip file.
I have now upgraded from 3.1.0.x to 3.1.1 using the “Update Now” button on the “Installed Plugins” list. No warnings this time.
Thanks again.
Regards,
MangeshFWIW, re-installed 3.1.1 and the warnings are back
This is a single-site install.
FYI, I reverted to 3.1.0 and the warnings went away.