adambloomer
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Backend bug: Dropdowns collapsing horizontallyMany thanks Vinod,
I’ll definitely add this custom function as a stop gap while the author is fixing this in their plugin.
Thanks again,
Adam.
Forum: Plugins
In reply to: [The Events Calendar] View dropdown not resetting when using back buttonI’ve done more digging and it seems that the list elements in the
<ul class="tribe-bar-views-list">
should be inverted and the “tribe-bar-active” class switched over to the month list element but sometimes this doesn’t happen.I’ve managed a hacky fix using jQuery that waits for the ajax to finish refreshing the calendar using:
$(document).ajaxComplete(function() { });
within this function, i then clone both list items (starting with the list view one – we want that to end up underneath the month view in the dropdown), prepend them to the containing unordered list which puts them in the correct order. I switch the classes over and I then remove both of the leftover nodes and we have a solution:
$(document).ajaxComplete(function() { $('li.tribe-bar-views-option-upcoming').clone().prependTo($('ul.tribe-bar-views-list')).removeClass('tribe-bar-active'); $('.tribe-bar-views-option-month').clone().prependTo($('ul.tribe-bar-views-list')).addClass('tribe-bar-active'); $('.tribe-bar-views-option:nth-last-of-type(-n+2)').remove(); });
Any better solution would be much appreciated.
Forum: Plugins
In reply to: [Get Latest Tweets] Twitter API v1 will be retired at end of MayPlugin has been updated but the feed now just shows the text “over a year ago” which links to a 404 page on twitter – can this be fixed please?
UPDATE: My bad – I was way too eager and didn’t read the new installation instructions which tell you to create an API key from within your twitter account to use with this plugin. Please ignore my initial post.
I generally run my wordpress installations in a subfolder of the main domain as this adds a small layer of extra security to my sites. I’ve installed the Better WP Security plugin which has some great features but the one i’m really keen to get working is to change the login url i.e. change it from the default https://www.mysite.co.uk/subfolder/wp-login.php to something such as https://www.mysite.co.uk/subfolder/blog-access
What happens is: once I change the setting in the plugin and log out, the https://www.mysite.co.uk/subfolder/blog-access url just throws an error and then I’m locked out completely based on accessing an unknown URL. Even deleting the lockout entry for my IP from the database doesn’t get the login url working – so basically I can’t access my site at all.
I restored my site from a backup so I could get back in and reinstall the plugin but I’d really like to get this login masking feature working correctly – everything else works fine.
Quick tip for anyone using chrome (or other browsers with private/incognito mode) – when you make changes in the plugin, open an incognito window to see if your site works and if you can log in. If not, close incognito and go back and reset the changes you made. This way you won’t end up being completely locked out like i was the first time.
Forum: Fixing WordPress
In reply to: "Pharma Hack" nasty variant? Anyone experienced it?they stashed their malicious files in an unused logs directory for a
domain no longer hosted under the user, disguised as outdated
log files. Every hour they copied the “log” files into place. They didn’t
even need to take any action — the cron job handled everything.Would you be able to explain this a little further – i think i’m experiencing something very similar and have deleted the files a couple of times but they keep coming back. I’m thinking it may be a similar case to what you’re experiencing.
Out of interest what script did you use – or can you pont me to a tutorial or resource to explain to me how to do this.
This is one of my favourite plugins for WordPress to explicitly configure the clients view and capabilities when i’ve built their site. Really disappointed that this is no longer working with wp 3.5 and really hope the developers fix it soon! Anyone suggest a suitable alternative while they fix it?
Forum: Plugins
In reply to: [Contact Form 7 Modules] Hidden fields not working in WordPress 3.5I have 1.3 running and the plugin outputs the page_title correctly into the HTML as the hidden fields value however the value of this hidden field does not appear in the generated email.
Any ideas on this – I have correctly copied the shortcode into the email area on the form setup section in the back end so I can’t figure out what I’ve done wrong?