marky_uk
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Store Locator] Duplicate stores in store listHi Tijmen ??
That has, indeed, fixed the issue. Thank you very much!
Forum: Plugins
In reply to: [WP Store Locator] Duplicate stores in store listHi there
I’ve got the same going on, on my site. See here – https://www.bridgman.co.uk/showrooms
Single entries in the WP Admin, but duplicates using the [WPSL] shortcode.
Any ideas?
Forum: Plugins
In reply to: [WP Store Locator] Allow scroll past Google map on mobile/touchHi there
Sweet, that works perfectly, thank you.
Changed the line to read:
draggable: checkMobileUserAgent() ? false : true,
Thank you!
Mark
Forum: Plugins
In reply to: [WP Store Locator] Admin access for EditorsThanks Tijmen ?? How do I know exactly what the Store Locator Manager role is? I’ve read the documentation but it doesn’t say – is it simply Editor + ability to add/edit stores? Or is it based on a lower WP role?
Forum: Plugins
In reply to: [Socialize] floating.js loading when not needed, causing errorsHi Jon
Great stuff, thank you.
I think I later saw the problem in another place – could that be the case?
Also, does your JS only load on pages and posts where it’s ticked to show?
Forum: Plugins
In reply to: [Socialize] floating.js loading when not needed, causing errorsGot exactly the same problem here.
I’ve only checked to load socialize on “Posts” yet the JS is loading on every page of my site.
And yep, because the JS is loaded on every page, regardless of this setting, the socialize bar is NOT displayed, but the code still assumes it’s there, fails, and stops any future JS running.
At the moment I’ve sticky-taped over this by wrapping the failure in a try, catch as follows:
function socialize_scroll(){ var topPadding = 30; var socialize_floating = jQuery('.socialize-floating'); try { var s = socialize_floating.parent().offset().top; var p = jQuery(window).scrollTop(); socialize_floating.css('position',((p+topPadding)>s) ? 'fixed' : 'absolute'); socialize_floating.css('top',((p+topPadding)>s) ? topPadding+'px' : ''); } catch(err) {} }
Can this be fixed for subsequent releases please?
Hi there!
I’ve got the same request here – using placeholders instead of watermarks for HTML5 compliancy ??
M
Forum: Plugins
In reply to: [Contact Form DB] Suggestion – one form, just open it?Hahaha, Michael … good answer. I guess it fits my question!
Next question – will you do it? ??
Have a great Friday!
Mark
Forum: Plugins
In reply to: [Admin Columns] Date formats in column – override possible?Hey hey
Look at that! Worked straight away ?? Woohoo, thank youuuu! So happy.
Might be nice to change the output date format … just saying …. ??
Mark
Forum: Plugins
In reply to: [Admin Columns] Date formats in column – override possible?What a great response … thanks Tobias ??
Would love a beta – love the proactive approach, and that would be brilliant.
Thank you! Look forward to it
Mark
Yay, smashing … thanks a lot for updating this … 3 times ?? Really kind .. will go and get the latest … ??
Hi there
Thanks for this. Just sent you an email to progress ??
Mark
hi Joost,
+1 for this request. Not sure if it’s possible to overload any functions you’ve created to pickup additional ACF fields. We use ACF on a LOT of websites and this would be such a huge benefit to our customers. ACF picks up where WP leaves off as a CMS for most of our clients ??
Could you maybe point me in the right place and I’ll take a look at doing this myself? I’ve used your plugin (and advice!) in our business for a very long time … so want to make amends but still allow the plugin to update!
Thanks for any help,
Mark
Forum: Plugins
In reply to: [Admin Management Xtended] Request-URI Too LargeHi Oliver ??
Oh boo – I’m running 2.3.2 !! ??
Any more help I can give you to help me, just keep asking.
Forum: Plugins
In reply to: During development of site want to show ALL posts regardless of statusHey s_ha_dum
Brilliant reply, thank you! That’s EXACTLY the missing piece of my jigsaw puzzle.
An example of code in case anyone is following this and wants to see the start of my solution –
function pwhere_filter($where) { global $blog_id; $where = str_replace("'private'", "'private' OR wp_".$blog_id."_posts.post_status = 'Draft'", $where); //var_dump($where); return $where; } add_action('posts_where','pwhere_filter');
??