Evo
Forum Replies Created
-
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Security vulnerabilityI am going through the code to figure out patching it.
Forum: Plugins
In reply to: [reCAPTCHA for WooCommerce] Plugin incompatibility WPS Hide LoginCan confirm this behaviour as well. Just came across the same issue where it wouldnt let you do a password reset as kept saying the recaptcha had not been ticked when it had. Found it was in conjunction with WPS Hide login.
- This reply was modified 10 months, 2 weeks ago by Evo.
Forum: Plugins
In reply to: [Decimal Product Quantity for WooCommerce] Selected ProductsHey dude. Appreciate the quick reply ??
So i think it is handled at a single product level correct and I could set the default values to not use it so the majority of the products would just work as normal. And in the category field you can select a label like grams, meters etc (I had already done this anyway but thats a cool feature).
The products on the system I am setting up use an inventory system which is the source of truth. What I wondered was if there was a way to actually assign the ability to use decimals by categories to save doing each product indivudually and having them overwritten when products are added and removed from the inventory system.
I have been using a bit of a hack to do anything from the inventory system. It allows you add custom fields so I just create a custom field with a certain value and then put that in a function with a conditional statement checking for that value and if true I apply it so they can then still manage everything from the inventory system.Awesome plugin by the way. Was just fiddling about with it on our staging site.
Don’t use storefront myself but that is probably due, I bet to the sidebar being to the right of your products so it appears below the products on mobile.
You could change this using media queries so it just targets your site on mobile and then use flexbox and order to do this.I went and installed storefront real quick on one of my dummy sites and yeah the sidebar shows on the right by default.
Something like this would add it above on mobile. Storefront goes mobile at 760 so wrapped it in a media query to reflect that.
@media only screen and (max-width: 760px) { .col-full {display:flex;flex-direction:column;} .woocommerce #secondary {order:1;} .woocommerce #primary {order:2;} }
Just put the css above in the dashboard under Apperance customizer additional css.
Or another option is to go into the customizer and switch your sidebar to the left.
I see there is an option in there under layout to switch the themes sidebar to the left instead of the default right.Hope that helps ??
That would be a great addition ????
- This reply was modified 3 years, 10 months ago by Evo.
Forum: Plugins
In reply to: [WooCommerce Shipping & Tax] Issue with wp-admin “select all” featureWas just coming to report the same issue.
Can second this as well. Updated all plugins and broke the site. Removed them all and one by one reactivated and yith order tracking was the culprit.
Forum: Plugins
In reply to: [WP2Social Auto Publish] Hide Select facebook pages for auto publishI second a request for that feature. Awesome plugin xyzscripts but when put onto a clients site its a bit unnerving to leave them with full access to other folks fb pages when you manage many.
Would be good if there was a lock that could be set instead of a hide. Only way to remove it is to remove authorization. Removal of authorization would mean it would have to be reauthorized again and so prevent unauthorized accessed as they wouldn’t know the details.And thanks for a great plugin Jason! Has saved me from ending up with half the product variations missing lots of times!
Had the same issue.
Check your php.ini file if you can get into it or ask your host to.
max_input_vars
suhosin.get.max_vars
suhosin.post.max_vars
suhosin.request.max_varsOne or more of these is probably set to 100.
Forum: Plugins
In reply to: (Plug:in People Lists) can't drag names into listsProbably wont help you now but if you open people-lists.php and remove line 334
wp_enqueue_script('people-lists-jquery-sortable', plugins_url('/people-lists/js/jquery-ui.min.js'), array('jquery','jquery-ui-tabs','jquery-ui-sortable'));
It will start working again.Hi Joe.
Sorry to jump in but does the calendar display ok in IE7 then?
Testing in IE9 on IE7 developer mode it doesn’t so i was just digging out my old XP machine to retest it on that machines native IE7 browser.Forum: Plugins
In reply to: [Firelight Lightbox] [Plugin: Easy FancyBox] Rounded CornersIf you do still want to do it Braseco, until the new version arrives, open up jquery.fancybox-1.3.4.css
The path should be.
wp-content/plugins/easy-fancybox/fancybox/jquery.fancybox-1.3.4.cssJust delete from line 188 (.fancybox-bg ) to line 254 (#fancybox-bg-nw)
So that will be all the ids like below.
#fancybox-bg-n, #fancybox-bg-ne, #fancybox-bg-e etc ??Then add this to the file as Ravan already mentioned.
#fancybox-outer, #fancybox-content {border-radius:10px;-moz-box-shadow: 0 4px 8px #444; -webkit-box-shadow: 0 4px 8px #444; box-shadow: 0 4px 8px #444;}
You can play around with the settings for the shadow and the border but this will give you rounded corners and a css shadow. The shadow and rounded corners wont be in present in IE8 and down though.
The end effect should look like this https://dragonartdesign.com/logo-design/stoneage
You might notice a little background around the image but that’s coming from the main style sheet not from the plugins style sheet. I just uploaded the plugin as a demo for you.I have used the plugin on this site as well and it doesn’t have that background around the edges.
https://sheepriverhomes.com/about-us/That’s a quick fix until this plugin is updated anyways ??
Forum: Fixing WordPress
In reply to: Show Menu Item to Logged In Users OnlyThis is a bit late but you could always use this
<?php if ( is_user_logged_in() ) { ?> <li><a href="<?php echo get_permalink(postidhere); ?>">Member</a></li> <?php } else { ?> <li><a href="<?php echo get_permalink(postidehere); ?>">Register</a></li> <?php } ?>
If they are a registered user they will get the Member page,
If they arent they get the register tab on the menu.
The postidhere is the post id number. You can get this by going into the pages/post area of the dashboard and hovering over the title. Look at the bottom of the browser (bottom left usually) and inside the url will be the post id.
Example:
https://yoursite.com/wp-admin/post.php?post=11&action=editSo the post id in this example is 11.
I normally set my member pages up as private pages only and then use the role editor plugin to give subscribers access to private pages.
Thanks for this man! I couldnt figure out why it didnt work in IE7 but worked in Firefox. I did the same thing with the visibility hidden and couldnt figure it out so cheers! Saved me a few hours im sure.