wrip
Forum Replies Created
-
Thanks. I haven’t purchased that plugin yet. So just wanted to know before I make a purchase.
I was able to get the user id and entered it in the plugin’s settings but still I am not able to get the notification emails. Is this an issue with the plugin or is this something to do with the Facebook API itself?
Forum: Plugins
In reply to: [font-resizer] Don't use WP_PLUGIN_URLYes I agree. Looks like the plugin hasn’t been updated.
Hi James
Thanks for your reply. I found the solution. It was nothing to do with the stylesheet directory uri. I had the bootstrap CSS and JS files loaded from CDN. For some reason the above devices were not reading those from CDN. I then moved the files into the server and everything started working.I was testing through Browserstack. Perhaps some of the emulator devices there were a bit slow or had some issues.
I’ve figured it out.
This seems to do it for me:$shipping_class = get_the_terms( $item['product_id'], 'product_shipping_class' ); echo $shipping_class[0]->name;or
echo $shipping_class[0]->slug;Forum: Fixing WordPress
In reply to: How to fix links when moving from a test to live site?Thanks for your advice. I tried Better Search and Replace. It works quite well for my purpose. Just trying to understand a message I got when I was using this plugin.
When I was doing search and replace, it gave me this message:
“During the search/replace, 42 tables were searched, with 3665 cells changed in 2487 updates.”Does this mean it updated all 3665 cells in only 2487 updates? I was expecting it should say something like ‘3665 cells changed in 3665 updates’.
So it looks like not everything was changed or maybe I am not understanding this correctly.
Forum: Plugins
In reply to: [Display Widgets] Display Widgets and Woocommerce product Categories@zurikus, I tried again but still not working. What WP version are you using? I am using 4.0.1.
Forum: Fixing WordPress
In reply to: How to fix links when moving from a test to live site?I was reading this article: http://codex.wordpress.org/Moving_WordPress
The last line under ‘Changing Your Domain Name and URLs’ advises to perform a search and replace only on the ‘wp_posts’ table. I’ve noticed that the old urls are present under other tables as well. So is it enough to just replace the old urls on ‘posts’ tables?
‘Better search and replace’ plugin gives options to replace entries on different tables. However ‘Velvet Blues’ plugin does not seem to give the table names. I am guessing Velvet only does search and replace on ‘posts’ table. Is that correct?
Forum: Fixing WordPress
In reply to: How to fix links when moving from a test to live site?Thanks James.
I also found this plugin: https://wordpress.org/plugins/velvet-blues-update-urls/. Looks like this one does the same thing as Better Search Replace.Forum: Plugins
In reply to: [Display Widgets] Display Widgets and Woocommerce product Categories@zurikus, I tried as you have suggested but it’s not working for me. I tried with WooCommerce parent category and sub-categories but no luck. Do I need to enable some other settings?
Forum: Fixing WordPress
In reply to: Converting to responsive themeThanks for the replies.
How about using a theme switcher like this: https://wordpress.org/plugins/device-theme-switcher/?Have you guys tried something like this? This looks promising as I can only build a new theme for mobile and tablet devices and leave the current theme as is. What are your thoughts?
Forum: Plugins
In reply to: [WP Edit] Does the free version of WP Edit have text colour picker?Oh yes. Didn’t notice that.
Thank you!Forum: Fixing WordPress
In reply to: Upgrading from 3.5.x and plugins: One-click or manual?If I first upgrade my installed version in localhost, is there a way to easily replicate it in the production? or do I have to repeat the steps manually in the live site?
Forum: Fixing WordPress
In reply to: How to escape && in jQuery script?Thanks. That should do it.
Forum: Fixing WordPress
In reply to: How to escape && in jQuery script?Yes I ended up moving the script in the header and it’s working now but what if the script is only to be displayed in a certain page? Are there plugins for including scripts in specific pages or is there another way of doing it?