stevenroose
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add Media Button Does Not WorkThis worked for me…
Please add this line to wp-config.php file:
define(‘CONCATENATE_SCRIPTS’, false );
just before /* That’s all, stop editing! Happy blogging. */
just figured it out. the lazy loading settings were not working on the additional tabs, so I just disabled that for now.
hmm. thanks for the info. I tried it out and not fixing the accordion issue. also the custom content on the page does not appear. https://www.topsmkt.com/faq/
Forum: Plugins
In reply to: [Master Accordion ( Former WP Awesome FAQ Plugin )] Not working with WP 4.0I have the same problems and do not use page builder…
now with updated to WP 4.0 images below shortcode are not appearing. the edit page disappears from top admin bar when logged in and viewing FAQ page. Q&A are not expanding… its sending to new page for each question now.
Love the problem. Hope you can fix.
Running Genesis Lifestyle Theme by Studiopress.
same problem here. now with updated to WP 4.0 images below shortcode are not appearing. Q&A are not expanding… its sending to new page for each questions.
Forum: Plugins
In reply to: [TheThe Image Slider] Not working with the JetPack pluginForum: Plugins
In reply to: [TheThe Image Slider] Slideshow not showingForum: Plugins
In reply to: [TheThe Image Slider] Not workthe author has clearly abandoned updating it for now. the forum on his site has several reports of the bug regarding images not loading since people have updated wordpress. The plugin page on his site says “seeing is believing” yet nothing loads on his site either. lol…. I would suggest finding a new plugin.
However, if you want it to work in the interim… you could fix it. I tried directory permissions, I added code to wp-config.php, I removed code from “thethe-image-slider.php” within the plugins folder and none of that worked…
this is what worked for me… using FTP go to your themes folder and make a copy of your “functions.php” file in case you mess it up. then add this code to the functions.php file.
If you dont use FTP, you can also do through WP admin. go to appearance, editor and the file will be listed on the right. Just select all text and copy it to a text file on your computer as your backup.)
ADD THIS
function thethe_fix() { $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https:" : "http:"; wp_deregister_script('jquery'); wp_enqueue_script("jquery", $protocol."//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js", array('json2'), '1.8.3'); } if (!is_admin()) add_action( 'wp_print_scripts', 'thethe_fix', 20 );
then go to your page with the slider and hit refresh. if it doesn’t load, don’t be shocked. I simply created a new slider with the same dimensions, slides etc and it works great.
hope that helps you before you have pulled out all your hair.
Forum: Plugins
In reply to: [TheThe Image Slider] Slider doesn't show imagesthe author has clearly abandoned updating it for now. the forum on his site has several reports of the bug regarding images not loading since people have updated wordpress. The plugin page on his site says “seeing is believing” yet nothing loads on his site either. lol…. I would suggest finding a new plugin.
However, if you want it to work in the interim… you could fix it. I tried directory permissions, I added code to wp-config.php, I removed code from “thethe-image-slider.php” within the plugins folder and none of that worked…
this is what worked for me… using FTP go to your themes folder and make a copy of your “functions.php” file in case you mess it up. then add this code to the functions.php file.
If you dont use FTP, you can also do through WP admin. go to appearance, editor and the file will be listed on the right. Just select all text and copy it to a text file on your computer as your backup.)
ADD THIS
function thethe_fix() { $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https:" : "http:"; wp_deregister_script('jquery'); wp_enqueue_script("jquery", $protocol."//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js", array('json2'), '1.8.3'); } if (!is_admin()) add_action( 'wp_print_scripts', 'thethe_fix', 20 );
then go to your page with the slider and hit refresh. if it doesn’t load, don’t be shocked. I simply created a new slider with the same dimensions, slides etc and it works great.
hope that helps you before you have pulled out all your hair.
Forum: Reviews
In reply to: [MobileChief - Mobile Site Builder] horribly buggyToo many to document. I just found a better plugin.
Forum: Fixing WordPress
In reply to: 500 Server Error When Adding Pagesdid you find an answer for this. i am having the same problem
Forum: Plugins
In reply to: [CSV Importer] Loads Fewer and Fewer PagesOK, i just lost 2 days of my life, but I’m happy to say i found out what was causing the problem for me. PERMALINKS! i was using the poor format of /%category%/%postname%/. after seeing the rewrite error i read some articles and found out i need to use a better permalink structure when you increase the number of pages on your site. made perfect sense. switched to /%year%/%postname%/. refreshed pages and now uploading 900 pages in a few seconds.
also, to prevent losing SEO, rank, etc. you should checkout adding the plugins. “Permalinks Moved Permanently” or “Dean’s Permalinks Migration”
Forum: Plugins
In reply to: [CSV Importer] all day trying…OK, i just lost 2 days of my life, but I’m happy to say i found out what was causing the problem for me. PERMALINKS! i was using the poor format of /%category%/%postname%/. after seeing the rewrite error i read some articles and found out i need to use a better permalink structure when you increase the number of pages on your site. made perfect sense. switched to /%year%/%postname%/. refreshed pages and now uploading 900 pages in a few seconds.
also, to prevent losing SEO, rank, etc. you should checkout adding the plugins. “Permalinks Moved Permanently” or “Dean’s Permalinks Migration”