Atakan Au
Forum Replies Created
-
Forum: Plugins
In reply to: [Automatically Hierarchic Categories in Menu] CATEGORY OREDER IN MENUYou can re-order post categories with this plugin:
Category Order and Taxonomy Terms Order
https://www.ads-software.com/plugins/taxonomy-terms-order/Forum: Plugins
In reply to: [Automatically Hierarchic Categories in Menu] CATEGORY OREDER IN MENUCategories are not sorted by ID numbers in the menu. It affects the sorting manually determined in the category setting.
Forum: Plugins
In reply to: [Database for CF7] Db CF7 sort by timeThanks for the fix.
Forum: Reviews
In reply to: [Automatically Hierarchic Categories in Menu] ExcellentThanks for the positive feedback.
Forum: Themes and Templates
In reply to: [StoreBiz] StoreBiz WooCommerce no thumbnailsI’m waiting for the update. Thanks for considering my suggestion.
Forum: Themes and Templates
In reply to: [StoreBiz] StoreBiz WooCommerce no thumbnailsThis is a very fundamental issue. But, is it clear enough?
Forum: Themes and Templates
In reply to: [StoreBiz] StoreBiz WooCommerce no thumbnailsI haven’t published my site yet. It’s under testing. I have already optimized the images I use. The important point is this: I am using a high resolution image of the product. For example 1000 x 1000 px. The products listing on the store page uses the full size of this image ( 1000×1000 px ). However, it is more appropriate to use thumbnails. For example, let’s look at your own demo address:
Here the full size of the image is used:
https://burgerthemes.com/demo/lite/storebiz/wp-content/uploads/2021/08/image-8.png
It should be a thumbnail instead:
https://burgerthemes.com/demo/lite/storebiz/wp-content/uploads/2021/08/image-8-300x300.png
This plugin creates the menu in HTML format. The overflow of the text is related to the theme you are using. Use a child theme. Customize the visual with CSS. Make any corrections you want.
You’re right. But both code give the same result. Is not it?
The
$termlink
variable does not start with'/'
in my test. Let’s solve it like this:$link_sub = '/'.ltrim(str_replace( "/%{$attr[ 'taxonomy' ]}%", '', $termlink ), '/');
Thanks for your contribution.
As you suggested, I updated the code for permalinks. I added new parameter,t_slash=0
option can be used to remove trailing slash. I have committed the changes to the development version. Please test it and let me know if it works.Thanks for your contribution.
I added two new parameters to the development version. Everyone will be able to use it in the next version to be released.'subi_atb': sub item, at the beginning of the link text 'subi_ate': sub item, at the end of the link text
Forum: Plugins
In reply to: [Burger Companion] No section edit on child themeI already found the cause of the problem. My solution is similarly:
@wp-content\plugins\burger-companion\inc\burger-comapnion-activator.php
if ( 'StoreBiz' == $theme->name || 'ShopMax' == $theme->name || 'StoreWise' == $theme->name || 'StoreBiz Child' == $theme->name){
@wp-content\plugins\burger-companion\burger-companion.php
if( 'StoreBiz' == $theme->name || 'StoreBiz Child' == $theme->name){
But this is a temporary and “dirty” method. Because if the child theme is named ‘My Child Theme’ instead of ‘StoreBiz Child’ this code will not work!
Instead, the conditioning should be based on the parent theme’s ‘slug’ address.
Forum: Plugins
In reply to: [Automatically Hierarchic Categories in Menu] Use plugin in Divi themebest wishes, have a nice day.
Forum: Plugins
In reply to: [Burger Companion] No section edit on child themeAs I said, This plugin does not control what the parent theme is.
Check this:@wp-content\plugins\burger-companion\inc\burger-comapnion-activator.php
if ( '???' == $theme->name || ... ){
@wp-content\plugins\burger-companion\burger-companion.php
if( '???' == $theme->name){
- This reply was modified 2 years, 3 months ago by Atakan Au.