Steaders
Forum Replies Created
-
Forum: Plugins
In reply to: [Text Slider] font size not changingI have updated the plugin and this should now be working. Let me know if you have any other problems.
Thanks for the feedback.
Forum: Plugins
In reply to: [Text Slider] Links in slides.I won’t add links into the plugin at the moment as I want to keep it simple. But below is a way to allow links to be added.
If you are okay changing the code. You could change the following lines
replace line 348
'main_text' => sanitize_text_field($input['main_text']),
with
'main_text' => wp_kses($input['main_text'], array('a' => array('href' => array(), 'title' => array()))),
replace line 349
'sub_text' => sanitize_text_field($input['sub_text'])
with
'sub_text' => wp_kses($input['sub_text'], array('a' => array('href' => array(), 'title' => array())))
Thanks
Forum: Plugins
In reply to: [Text Slider] style tag closingHi Kaliox,
Thanks for this find. I will put this fix into the next release.
Steaders
Forum: Plugins
In reply to: [WP Catalogue] Categories between Woocommerce and wp-catalog not playing niceHi
Please could you try changing index.php line 124 in the wp-catalogue plugin directory from
if (is_tax()) {
to
if (is_tax('wpccategories')) {
Please let us know if this works for you and it can be added to a near future update.
Many thanks.
Forum: Plugins
In reply to: [WP Catalogue] thumbnail displays as full size on individual product pageHi,
If you remove the rule
img {
height: auto;
width: auto;
}
from your style.css at line 290 then the images will be the correct size.It clashes with the css in the plugin
.entry-content img {
max-width: inherit !important;
}
Thanks
Forum: Plugins
In reply to: [WP Catalogue] Delete Post under Product ListI have had a quick look at this. The theme is doing something clever involving buffering the output. I didn’t dig too deeply though. This is clashing with the plugin in this instance.
The plugin also needs some slight amending to fix its own issue. This should fix your problem.
If you are able, please try replacing line 161 of the plugin file wpc-catalogue.php
endwhile; wp_reset_postdata;
with
endwhile; wp_reset_postdata();
Please report back how it goes. A fix can be added in the next update of the plugin if needed.
Thanks
Forum: Plugins
In reply to: [WP Catalogue] Sidebars aren't working on product pagesThe sidebar section in not part of the WP Catalogue plugin. It would have been added to the product admin page by your Theme.
The product pages do not support sidebars. This is to allow enough room for the product photos as well as the product category menu on the left hand side.
Forum: Plugins
In reply to: [WP Catalogue] Pagination IssueIt looks like you need to change a couple of things in the code.
On line 191 and 194 in the wpc-catalogue.php file change
$page_id
to
$post->ID
If you are able, please give it a try and let us know how it goes. This can then be added in a future update.Thanks
Forum: Plugins
In reply to: [HTML5 jQuery Audio Player] Audio Player Breaking RSS FeedHi Brodydorland
Looks like the music player code is being included in the RSS feed and thus breaking it. Please try adding the following code to index.php in the plugin directory on line 78, and report back to let me know if this fixes your issue. If so, the fix can be implemented permanently into the plugin.
if(is_feed()) {
return '';
} // short circuit to return nothing if a feed is being rendered
Thanks
Forum: Plugins
In reply to: [HTML5 jQuery Audio Player] Music order…At the moment there is no particular order that the songs are placed in. It is just however the database returns all of the song entries. This can be different from one database to another.
Forum: Plugins
In reply to: [WP Catalogue] pro version issueYou html has a
<code>
tag wrapped around the post content on the page that has [wp-catalogue]. This is changing the style on the ‘All Products’ page.
You will need to find why that is being added and remove it in your wordpress setup.Forum: Plugins
In reply to: [WP Catalogue] All Product Links not workingLooking at the code you have to have one page with the [wp-catalogue]. That page is used as the ‘All Products’ ‘homepage’ of sorts.
Not sure what is going on with the breadcrumbs.
Forum: Plugins
In reply to: [WP Catalogue] All Product Links not workingHi Spencer,
I am trying to diagnose this so just a few questions.
Are you using the shortcode [wp-catalogue] in a page? If so what is the url?
Many thanks
Forum: Plugins
In reply to: [WP Catalogue] change the color of wordsYou can change this is your CSS easily with
.wpc-title a {
color: #fff;}
Forum: Plugins
In reply to: [WP Catalogue] products besidew the categoriesThe CSS for the page https://www.bathaccessories.gr/251-2/ includes
.singular .entry-content {
width: 68.9%;
}
This is causing the products to go below the categories. If this CSS rule is removed, the products appear besides the categories.You will have to be careful when changing the CSS as it could cause over parts of your site to render incorrectly.