joffff
Forum Replies Created
-
Forum: Plugins
In reply to: [Elementor Custom Skin] Lack of Documentation@dudaster firstly – thanks for your effort putting this plugin together. I’ve been looking for this functionality for a while and I can’t believe it’s not a core feature of Elementor Pro!
My initial reaction to the plugin was the same as @linkshare above and I had no idea what I was doing but I’ve *finally* managed to get something working and would happily try and put some words together for you as a guide for new users. Let me know how I can help!
Forum: Plugins
In reply to: [WP Fingerprint] Initial FeedbackForum: Plugins
In reply to: [AMP] Support for Custom Post TypesFollowing.
Forum: Plugins
In reply to: [WP Broadbean] Fatal error when activating pluginHi Mark,
Further to this it looks like the two plugins are using conflicting versions of CMB – you’re using 1.0.2 from Human Made (https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress) whereas the other plugin is using 1.2.0 from Web Dev Studios (https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress).
Do you have any suggestions on the best way to resolve this?
Forum: Plugins
In reply to: [WP Broadbean] Fatal error when activating pluginAh it looks like it’s a conflict with another plugin (Map List Pro), thanks for your help.
I’m experiencing this too, but I’m not able to resolve it by logging out and back in. When I save any WLCMS settings I get the “You do not have…” message on https://www.domain.com/new/wp-admin/themes.php?page=wlcms-plugin.php&saved=true
Fresh install, WP 3.3.2
Thanks Edward, 1.11 is working here on Posts, Pages and Custom Post Types.
Forum: Plugins
In reply to: [Multipost MU] [Plugin: Multipost MU] Custom Post Types?Thanks Edward, I’ve already found ThreeWP Broadcast and it’s working very well!
Forum: Plugins
In reply to: [Multipost MU] [Plugin: Multipost MU] Custom Post Types?+1 for Custom Post Type support ??
Hi Tim,
Thanks – I’m getting the 403 Access Denied error on xmlrpc.php.
I’ll look at raising a support ticket with Namesco, can you advise on what I need to be asking from them?
Forum: Fixing WordPress
In reply to: 301 redirect old site URLsThanks (again), that’s much simpler! ??
Forum: Fixing WordPress
In reply to: 301 redirect old site URLsI’ve come up with a solution, but not sure if it’s the correct one. Instead of redirecting to the permalink URL (which wasn’t working as above), I’ve redirected to the non-permalink URL (domain.com/?p=1).
Forum: Fixing WordPress
In reply to: 301 redirect old site URLsNo, I’d put it after!
Thanks, it’s now at least acting on the rule first, but it’s now getting caught in a redirect loop.If it helps, the entire .htaccess contents are:
SetEnv DEFAULT_PHP_VERSION 5 DirectoryIndex index.cgi index.php RewriteCond %{QUERY_STRING} page=2 RewriteRule ^index\.php$ https://www.domain.co.uk/newpage/ [R=301,L] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Removing the L from the redirect rule just gives a 301 Moved Permanently message.
Perfect handsomefish, thank you!
Forum: Plugins
In reply to: [Plugin: Secondary HTML Content] Content doesn't display within the LoopUpdate
I’ve tracked down the problem, line 161 of the plugin secondary_html_content.php file:
if (!is_singular()) return false; //only intended for single posts and pages
What are the implications of removing this line of code as my initial tests seem to show it working fine. Of course I’m sure it was put in there for a good reason!