VitaminDave
Forum Replies Created
-
Yup, that works, many thanks!!
Dave
Hi Pavlo, the issue is on this site: see post above. The plugins are all up to date. The theme is our own build and is very lightweight. I can set you up with admin access if you need it.
Many thanks
Dave
I am trying to do something similar. Is this possible?
Regards
DavidForum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Sitemap 403 ErrorI solved the issue! Just posting here in case any help to anyone else! The hosting environment required a a redirect to be set for the domain root folder, EG:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /~mydomain/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /~mydomain/index.php [L] </IfModule> # END WordPressThis caused the 403 error as the plugin’s .htaccess rules block urls ending in a ~
- This reply was modified 9 years, 1 month ago by VitaminDave. Reason: Resolved
Better again! Nice one DJ!
Open up the theme’s functions.php file and delete (or better agin comment out) lines 377 – 387 like this:
/*<--! // Add lead class to first paragraph function first_paragraph($content){ global $post; // if we're on the homepage, don't add the lead class to the first paragraph of text if( is_page_template( 'page-homepage.php' ) ) return $content; else return preg_replace('/<p([^>]+)?>/', '<p$1 class="lead">', $content, 1); } add_filter('the_content', 'first_paragraph'); !-->*/You should use child themes to avoid losing any customisations, see: http://codex.wordpress.org/Child_Themes#Using_functions.php 🙂
Forum: Themes and Templates
In reply to: [WP-Creativix] [Theme: WP-Creativix] FaceBook is not workingAh, I think I see the problem, facebook is having outages at the moment. The ‘Like’ plugin is served from facebook.com com so isn’t loading! At least I hope that’s all it is!!! [crossedfingers]
Forum: Themes and Templates
In reply to: [WP-Creativix] [Theme: WP-Creativix] FaceBook is not workingI’m having the same problem too, the div is showing a broken image instead of the facebook button and the link is dead.