sguk
Forum Replies Created
-
Often the dev is the administrator but the shop user needs to be able to add product options.
I altered it with roles by allowing “manage_options”Forum: Plugins
In reply to: [Classic Editor] Compatibility with WordPress 5.9No, deactivating only affects the appearance of the editor, not the content.
When you activate the other plugin it’ll reinstate the classic editor look.Forum: Plugins
In reply to: [Classic Editor] Compatibility with WordPress 5.9Check out
Disable Gutenberg
By Jeff StarrForum: Plugins
In reply to: [Event Tickets and Registration] Ticket quantityForgot I’d posted here! Thanks for replying.
We solved it, it’s PayPal cookies. So if you added 1 then removed and “continued shopping”…
Then decided to add 1 again you’d get two as PayPal cookies remembers.Abit weird but for normal purchases it doesn’t happen.
And apparently the events website uses the event plug plugin to get the pop up cart with checkout ??
Forum: Plugins
In reply to: [Event Tickets and Registration] Ticket quantityI’ve just noticed your demo is different.
After clicking get tickets it shows another window.
Then click checkout.When we click get tickets it goes straight to PayPal with only one ticket
ok many thanks for letting me know.
It seems your plugin is mostly based on membership which can be upgraded.
I guess we can’t charge for access per page?
EG Pay to access /page-one
Pay another fee to access /page-two
Forum: Plugins
In reply to: [Contact Form 7] tag each dropdown optionThanks for your reply.
It’s more the backend thank frontend.Eg normally the drop down would have say
[dropdown-tag]And in the email it would show the option selected.
What we need ideally is
[dropdown-option1]
[dropdown-option2]
[dropdown-option3]Or so we identify the selected option and map it to an action on aweber (triggered from custom fields)
At the moment there is no way of mapping the selection as only the whole dropdown is tagged.
Forum: Plugins
In reply to: [Page scroll to id] remove ful url on current page linksIt worked perfectly with /soma-page/#anchor
BRILLIANT.
I sent you a donation on your website to get yourself a cool beer on me. Thank you! Really appreciate your help and fantastic plugin.Forum: Plugins
In reply to: [Page scroll to id] remove ful url on current page linksWow! That is fantastic!
I’ll check out your advice and update. ??
Thanks!Forum: Plugins
In reply to: [Page scroll to id] remove ful url on current page linksUnfortunately I can’t at the moment as it’s a sub contract job in dev for another design company.
In the wordpress nav there are some links to anchors on the page.
These are set to /some-page#anchor so they work from other pages.Your plugin works perfectly.
However, we are just looking for a way to remove the current url before # dynamically. This would make the urls #anchor so they avoid a refresh.
Then they would be
/soma-page#anchor from all other pages
but become
#anchor
on the current pageTricky one! Not strictly related to your plugin but appreciate any help.
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] jump to top in v5Fixed conformed. Thanks Darren!
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] jump to top in v5top man!
Have a great weekendForum: Plugins
In reply to: [Nested Pages] font sizeIf anyone wants to do this, I changed the css file at assetts/css
Search for “.nestedpages ol a” and add font-size: 16px;
Nested pages picks up on the default body font size of the admin, which is only 13px. The default pages admin over-rides this with 15px;
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Page jumps on load moreIf anyone has the issue with match height causing jumoing, here is the solution
jQuery(document).ready(function($){
$(function() {
$.fn.matchHeight._maintainScroll = true;
$(‘#employees .person’).matchHeight();
});$( document ).ajaxComplete(function() {
$(‘#employees .person’)
.matchHeight(‘remove’)
.matchHeight();
});});
thanks to “liabru” here https://github.com/liabru/jquery-match-height/issues/31
EDIT: I had a few intermittent load issues with imagesloaded, I found that shortening the code to that below still worked well!
jQuery(document).ready(function($){
almComplete = function(alm){
$(‘.divname’).matchHeight();
};});
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Page jumps on load moreHi Darren,
Just about to reply, I can confirm the issue is not with your excellent plugin (as far as I can see anyway).
In my case, I found it was another piece of js running a matchheight on the post boxes. I’ll find another way of running it.
Appreciate your work as always ??