drakcore
Forum Replies Created
-
Forum: Plugins
In reply to: [AWD Weight/Country Shipping for WooCommerce] Can’t uninstallManaged to remove it by activating another shipping plugin.
Forum: Plugins
In reply to: [Report Content] Theme stylesheet breakingAlso came across this issue.
Happens when they are logged out and only on the woocommerce, single product pages.
Layout gets messed up and all content from the other tabs are under the first “description” tab.
Using the “salient” theme.*Quick fix is to just disable/un-tick “Users must be logged in to report content”.
Unfortunately the plugin author doesn’t answer support at all…
I’ve decided myself to move on to another paid plugin which has the same functionality.Have the same problem with “collapsing categories”, if you found a solution please let me know.
Thanks a lot.Forum: Plugins
In reply to: [Contextual Related Posts] Php limit results of related postsAwesome sauce. thank you very much!
Forum: Plugins
In reply to: [Contextual Related Posts] Php limit results of related postsThe code in my above post. Tried incoperating the $limit in it but no idea how to.
Need to limit the amount of posts populating as I’m using the code in several places on my site and want less results shown in specific areas.Forum: Plugins
In reply to: [Contextual Related Posts] mobile view issuesIf you getting gaps there might be padding/margins that are the cause.
You will just have to inspect with your browser and see what it is.Forum: Plugins
In reply to: [Contextual Related Posts] mobile view issuesI found a post under this url Hide div if screen is smaller than a certain width
@media screen and (max-width: 500px) { .crp_title {display:none!important;} }
Adjust the the “max-width:” to a lower px that would correct for mobile devices you want it to trigger.
Just tested on my website and looks like it is working.Forum: Plugins
In reply to: [Contextual Related Posts] mobile view issuesTry using this in your custom CSS as it worked for me.
You can take out several options below, I just prefer removing the boxing around the posts.
*Note my image sizes are set to 130px by 130px..crp_related li {margin:0!important;border:none!important;padding:0!important;-webkit-box-shadow:none!important;max-width:50%!important;list-style:none!important;}
Confirmed working now.
That is right, it is the sidebar widget, back-end/dashboard is fine.
Forum: Plugins
In reply to: [Collapsing Categories] Deformed category menuOkay with learning some basic CSS from scratch I figured out the styling to get it working perfectly.
I’m using the “salient theme” with the “ascend” template so you will most likely need to adapt as per your theme.
I added the following custom CSS to my theme.
/*Fixes the widget and footer area for plugins with styling and margin*/ .ascend #footer-outer #footer-widgets .col ul li a, .ascend #sidebar div ul li a {display: inline;} .row .col img {margin-bottom: 0 !important;}
The display inline in the above code is the most important part.
The margin-bottom was just pushing up my custom buttons up so I set it to zero.
If you need help with your theme specifically, just drop a message here.This is not a issue, just a how to.
Forum: Plugins
In reply to: [Collapsing Categories] Not working for woocommerce product categoryAre you using the “product categories(product_cat)” Taxonomy type with the “Products (product)” post type?
Just make sure that is selected, working for me, just the layout is messed up due to the css formatting.Forum: Plugins
In reply to: [Collapsing Categories] Move CSS to fileAnyone found a solution for this? Also having huge issues with my theme style messing with it.