darrenbond
Forum Replies Created
-
Forum: Plugins
In reply to: [Mailgun for WordPress] Has this been abandoned?Thanks for responding, and I’m very pleased to hear that you’re investing in this plugin, and nice to see a new release in the WP repository.
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Apply Filter Button Text in a WidgetJust upgraded; works perfectly!
Thank you very much! I’ll be sure to leave a review ??
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Apply Filter Button Text in a WidgetThat would be absolutely perfect! Thank you so much! ??
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Apply Filter Button Text in a WidgetHey,
I was just wondering when you might be releasing the next version so that I can correct the button text? I have a site that’s about to go live, and ideally I’d like the text changed beforehand. Is it something you could tell me how to modify myself?
Many thanks.
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Indent Sub-Category In Select BoxThat’s perfect! Thank you for providing the update so quickly.
All I changed was the Unicode en dash
$indent .= '–';
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Indent Sub-Category In Select BoxThanks for your reply. I should have said that I’m not using select2. A custom filter would be great ??
Forum: Fixing WordPress
In reply to: 404's on All Pages Except HomeThis sounds like a server issue. Have you contacted your hosts about it?
Yes, they’re insisting it’s not an issue on the server, but could be caused by a plugin. They say that no other customers on my server have the problem, and their error logs don’t report anything.
I find it hard to believe it’s not their problem given that this issue happens on all my sites.
The problem is that it’s so random. I have no idea when it’s going to happen, but when it does, I check the .htaccess file and it looks fine with no corruption. As soon as I save it (via ftp or WordPress) the pages come back to life.
Forum: Plugins
In reply to: [BackUpWordPress] Backup hanging & not emailing backuphey,
I’m afraid there hasn’t been a solution yet, although I’m in regular communication with their support. I’ll keep you updated!
Forum: Plugins
In reply to: [BackUpWordPress] Backup hanging & not emailing backupI setup a standard WP install on a development server on which I’ve been able to re-create the issue.
I’ve emailed the details to Paul, so one of us will reply with whatever the outcome is in due-course.
Forum: Plugins
In reply to: [BackUpWordPress] Backup hanging & not emailing backupI’ve contacted support several times and never had a response. Can we not discuss a possible solution here where it might benefit others with the same issue?
Forum: Plugins
In reply to: [BackUpWordPress] Backup hanging & not emailing backupI have exactly the same problem, and it happens only on one server which has 10 WordPress sites hosted on it. All are WPv3.8 and BackupWordPress v2.3.3.
It works perfectly on other sites hosted on different servers, so I’m presuming it’s something server-side which is causing the issue, but I’m not sure where to start looking.
Server is running Apache 2.2.25, PHP 5.3.26 and MySQL 5.5.32. I wonder if our servers have anything in common?
Forum: Plugins
In reply to: [BackUpWordPress] Stuck at "Creating Zip"Hi Paul,
I also sent two emails to support (12/09/13 08:32 & 13/09/13 11:54) regarding the same issue but haven’t had a response yet.
Any suggestions are welcome!
Regards,
DarrenForum: Plugins
In reply to: [BackUpWordPress] Version 2.3 update leaves plugin deactivatedI have exactly the same problem with v2.3 when using WPRemote to manage all my updates from one place.
I’ve had to log in to each site to activate the plugin.
Forum: Plugins
In reply to: [Arconix Shortcodes] do_shortcode in theme templateThat is absolutely perfect. Thank you so much for your quick and helpful replies.
Forum: Plugins
In reply to: [Arconix Shortcodes] do_shortcode in theme templateSorry, I should have made myself clear; I already know how to retrieve custom field data (I’m using the ACF plugin) I’m unsure how to use it inside of the variable you described above so that I can use your Tabs shortcode.
Ideally I’d like to use an ‘if’ statement so that a tab is only created if the custom field is populated. I had an idea of how to do it using individual do_shortcode()’s, but as discussed that’s currently not an option.
This was to be my code:
<?php echo do_shortcode('[tabs]'); ?> <?php if ( get_field('service1')) { echo do_shortcode('[tab title"Service 1"]'); echo '<h1>Service 1</h1>'; echo get_field('service1'); echo do_shortcode('[/tab]'); } ?> <?php if ( get_field('service2')) { echo do_shortcode('[tab title"Service 2"]'); echo '<h1>Service 2</h1>'; echo get_field('service2'); echo do_shortcode('[/tab]'); } ?> <?php if ( get_field('service3')) { echo do_shortcode('[tab title"Service 3"]'); echo '<h1>Service 3</h1>'; echo get_field('service3'); echo do_shortcode('[/tab]'); } ?> <?php if ( get_field('service4')) { echo do_shortcode('[tab title"Service 4"]'); echo '<h1>Service 4</h1>'; echo get_field('service4'); echo do_shortcode('[/tab]'); } ?> <?php echo do_shortcode('[/tabs]'); ?>