k4media
Forum Replies Created
-
The problem was bad typing on my part in the shortcode_exists() function. This code is working.
if ( shortcode_exists('display_stock_manager_form') ) { echo do_shortcode('[display_stock_manager_form]'); }
Hello, I am having the same problem again. The shortcodes do not show the form, neither display_stock_manager_form or display_stock_alert_form. I am using the latest version 2.4.2.
The page I am having trouble: https://devinecellars.com.au/buy/non-alcoholic/cocktail-mixers-syrups/finest-call-raspberry-puree-1l/
Hi, thanks a million for following up. It works!!
Forum: Fixing WordPress
In reply to: Web shrinkingWhat’s the url? Can you share?
Forum: Fixing WordPress
In reply to: Web shrinkingIt sounds like you have elements that exceed the width of the viewport. Best case: Find the element(s) that are too wide and resize them.
You could also try adding this css: body { overflow-x: hidden; } It might do the trick, but the above solution is preferred.
Forum: Fixing WordPress
In reply to: Just restored wp on a new host, can’t see old postsWhat’s in the database, wp_posts and wp_post_meta tables? Is the post data there? If not, you could try exporting from the old installation and importing into the new one, under Tools > Export/Import. Another option: check your backup for the database, and manually import using the command line, PHPMyAdmin, or similar.
Forum: Fixing WordPress
In reply to: Web shrinkingUse the viewport meta tag.
https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag
Forum: Fixing WordPress
In reply to: HTML/PDF Text Indexer and searchHave you tried Relevanssi, the search plugin: https://www.relevanssi.com/ It will index PDFs. You could make a function that links to all the files in your directory, making it easy for the plugin to find your PDF files.
Forum: Developing with WordPress
In reply to: Custom taxonomy labelHi, Valery,
the_taxonomies() will not work with a Custom Post Type. Use get_the_terms() instead. https://developer.www.ads-software.com/reference/functions/get_the_terms/
Forum: Fixing WordPress
In reply to: Database Table IssueWhen you say “optimized,” can you elaborate? Did you use a plugin to do that, which one? Which forum plugin are you using?
Forum: Fixing WordPress
In reply to: add bullet points in H2 tagsForum: Plugins
In reply to: [Sendle Shipping Plugin] Rates not appearing on checkout pageThank you so much for the fast reply. I had not set up any shipping zones with Sendle as the shipping method. That was my issue. Thanks again.
Forum: Plugins
In reply to: [Sendle Shipping Plugin] Rates not appearing on checkout pageWhere can I send you login details?
Forum: Plugins
In reply to: [Maintenance] Background image and logo doesn’t workIf you have the Autoptimize plugin installed try going to Autoptimize > Images and unchecking ‘Lazy-load images?’ and clear any caches. That fixed it for me.
Awesome. Thanks!