zyntsz
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Changing WordPress avatars to Name Initials?Thanks that did the trick. Works well even though it hasn’t been updated.
I have hidden the published date available in the theme and instead added this code after the one which is responsible for the published date in content-single.php. Is modified date still displayed?
$u_time = get_the_time('U'); $u_modified_time = get_the_modified_time('U'); if ($u_modified_time >= $u_time + 86400) { echo "<p>Last modified on "; the_modified_time('F jS, Y'); echo " at "; the_modified_time(); echo "</p> "; }
Forum: Plugins
In reply to: [Custom Post Type UI] Use theme template for custom post typesOh ok thanks
Forum: Plugins
In reply to: [Custom Post Type UI] Use theme template for custom post types@tw2113 by top most folder, do you mean directly inside child theme folder? I only have two files in child theme function and style. By putting there it just shows blank white screen now. I guess the problem is with the php file. Instead of having get header and get footer, it just calls another function with render.
- This reply was modified 2 years, 5 months ago by zyntsz.
Forum: Plugins
In reply to: [Custom Post Type UI] Use theme template for custom post typesOh thanks
Forum: Fixing WordPress
In reply to: Optimize image outside media inside uploads directory@storepaperoomates Where is the option? I can’t seem to find such option in the settings.
- This reply was modified 2 years, 9 months ago by zyntsz.
Thanks for the answer. Now, I encountered another problem.
The cart is showing product original price instead of the discounted price even when the discount is activated in the cart.
Yes, I am using your plugin and I have created the discount rule.
I know you mean that the sale badge appears on the top right side of the product image in the product lists. However, I meant that I want to display like 20% off on the side of the price of every individual product pages.
Forum: Plugins
In reply to: [Custom Post Type UI] Custom taxonomies not displayingI figured out the workaround. I just used elementor dynamic tags to automatically add the genres. Thanks for the response.
Forum: Plugins
In reply to: [Custom Post Type UI] Custom taxonomies not displayingEdit: I tried adding the genres to tag cloud but it’s not even showing anything after adding. I don’t think there is any genre output.
Forum: Plugins
In reply to: [Custom Post Type UI] Custom taxonomies not displayingSo far I only saw genre output as a part of footer when I tried changing its settings.
Is there a way to move to it from footer to body?Forum: Plugins
In reply to: [Custom Post Type UI] Custom taxonomies not displayingThe only thing I have added is the code to hide footer with this code
.entry-footer {display:none;}While I deleted the code, it only showed ‘Genre:’ and everything else was empty even though I added genre types.
With the code added nothing related to taxonomy is showing.I viewed my themes file and everything is almost at default. If it helps I am using buddyx theme.
Forum: Plugins
In reply to: [Custom Post Type UI] Custom taxonomies not displayingI don’t know if I am using any template function. I just changed the hierarchy to true and nothing more.