Ruurd de Wind
Forum Replies Created
-
Just ran into the same issue. Seems to be a caching issue with some (left over) files?
My solution was opening the site in incognito / disabled caching and relog. Editor then worked fine.
Forum: Reviews
In reply to: [WP Store Locator] Google API policy broke this plugin… :(Psst.. Brian, you should check your site, you don’t have set a Google maps Javascript API/Billing account. Guess you’re gonna blame Google for their bad UX?
Really poor judgement by rating this plugin like you did.
Forum: Fixing WordPress
In reply to: Redirecting old URLs to new onesI agee on bcworkz, but.. you need some basic knowledge of proper 301 redirects via htaccess. Applying this the wrong way can do more damage than good.
Forum: Fixing WordPress
In reply to: Redirecting old URLs to new oneshttps://nl.www.ads-software.com/plugins/redirection/
This plugin is exactly what you are searching if I understand your query correctly.
You can also make a CSV file to import more than 3 links simultaneously.
Forum: Plugins
In reply to: [WP Store Locator] Plugin stylesheet missing on sub-pagesHello Tijmen,
Thank you for this solution. This works.
I used the following rule:wp_enqueue_style('wpsl', plugin_dir_url() . 'wp-store-locator/css/styles.min.css', '2.2.16');
Final question: wich function can I check to see if the WPSL plugin is loaded onto a page/post? This way I don’t have to include the CSS on every page.
Forum: Plugins
In reply to: [WP Store Locator] Plugin stylesheet missing on sub-pagesHello Tijmen, thank you for the response.
I mean a sub page of a page. I have made my own theme, using 3 other plugins: Contact Form 7, Advanced custom fields and Yoast SEO. The rest is made custom/by hand.
I include the store locator by shortcode with the shortcode you created. On the sub page I use a category specific shortcode.
Shortcode on the main page:
do_shortcode('[wpsl template="template_name"]');
Shortcode on the sub-page (of main page):
do_shortcode('[wpsl template="template_name" category="category-name"]
The standard theme has been created with the help of your documentation wich is a ‘child’ of the theme you included. It’s a one on one copy.
Deactivating plugins isn’t solving the issue. Strange thing is that the stylesheet is loaded on the main page but not on the sub page wich loads exactly the same scripts/stylesheets.
Forum: Fixing WordPress
In reply to: Need Help With CSS…Update my previous piece off css with the following, wich should work.
@media ( max-width: 768px ) { #content.row { margin: 0; } article .elementor-section-full_width { margin-left: -15px; margin-right: -15px } }
Forum: Fixing WordPress
In reply to: Need Help With CSS…Hi, you could try this adding to your custom css:
@media ( max-width: 768px ) { #content.row { margin: 0; } }
Hi Squeaky, thanx for your reply in this topic. Because you are making the changes directly into a plugin file itself it’s probably not the best way to go since plugins are mostly updated frequently.
However I will give it a try and perhaps write a function wich will output a pagination for the homepage as well since there hasn’t been a (usable) reply from the plugin author.
The problem persists also only on the frontpage. I also use the standard shortcode tag for woocommerce.
e.g.
[product_category category="all-products"]
Same problem here although it only happens on the frontpage. The other pages seem to work fine.
Homepage has around 5 pages [1] [2] [3] [4] [5]
The other page has 2 [1] [2]If I click on a pagenumber on the frontpage, only the pagenumber changes in the url. Nothing else. Products stay the same as on page 1.
If I click on a pagenumber on another page it seems to work fine. Both url and products seem t change.
Forum: Hacks
In reply to: How to disable auto wordpress emmed scriptI am a front end developer and since extra plugins is something I want to avoid the solution of Nadeem did the trick. Nicely done!
Thank you.
Forum: Plugins
In reply to: [Redux Framework] Fatal Error after plugin activationRan into the same problem. I’ve found 1 way to fix this problem although it’s not the most preferred method. It involves making changes to an WordPress core file so be careful.
Solution:
Find the file “file.php” in your-site.com/wp-admin/includes/. On rule 169 you’ll find$temp_filename .= '-' . wp_generate_password( 6, false );
Change this to
//$temp_filename .= '-' . wp_generate_password( 6, false );
Keep in mind, changing WordPress core files is absolute not desirable since files will be ‘reset’ upon an update of WordPress.
Forum: Plugins
In reply to: [Advanced Custom Fields: Accordion Tab Field] How do I get it working?3 months further. Is there an update coming soon?
I hope so ??
Solved. The issue in question was caused by double declaration of Jquery. Native and manually added jquery. Kinda silly but that was the main problem.