alyshtva
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [GeneratePress] Manualy change from desktop to mobile menuHmm, I see. Are there any recommendations I should follow? For example, are there specific theme classes that definitely need to be changed during the process, or does classes in my question cover everything I need to change?
- This reply was modified 3 months, 2 weeks ago by alyshtva.
Forum: Plugins
In reply to: [GenerateBlocks] Add custom class to QueryLoop item ‘.gb-query-loop-item’Thank you Fernando.
For anyone who will looking for solution here is the code to add swiper-slide class
add_filter('post_class', function ($classes) { if (!is_admin() && in_array('gb-query-loop-item', $classes)) { // Add the '.swiper-slide' class to the post classes $classes[] = 'swiper-slide'; // Remove the 'generate-columns' class if it exists $index = array_search('generate-columns', $classes); if ($index !== false) { unset($classes[$index]); } } return $classes; });
- This reply was modified 1 year, 3 months ago by alyshtva.
Forum: Plugins
In reply to: [GenerateBlocks] Dynamically change GenerateBlocks QueryLoopOh… I see now. Yes, it’s working. I thought I had misunderstood something, but the code itself was pretty much correct. Thank you so much for your help.
I wish you a peaceful sky and a great time.
Forum: Plugins
In reply to: [GenerateBlocks] Dynamically change GenerateBlocks QueryLoopOh, my bad, now it should be fine
- This reply was modified 1 year, 3 months ago by alyshtva.
Forum: Plugins
In reply to: [GenerateBlocks] Dynamically change GenerateBlocks QueryLoopHey, thank you for your feedback. I’ve made changes.
Forum: Themes and Templates
In reply to: [GeneratePress] Dynamically change GenerateBlocks QueryLoopForum: Themes and Templates
In reply to: [GeneratePress] Title of Archive page missingOhh I see. Yes they are showing on other archive pages, which is why I thought it might be some kind of bug. Anyway, thank you so much.
Forum: Themes and Templates
In reply to: [GeneratePress] Title of Archive page missingThank you Leo problem fixed, may I ask you, is it default approach for archive page to hide title or it`s some kind of bug? Thank you for your help
Forum: Themes and Templates
In reply to: [GeneratePress] Title of Archive page missing
Thank you for your feedback. Here is the link it’s a development branch but should be accessible for now: https://rjemarketindev.wpenginepowered.com/?page_id=316. Without a child theme, all custom development is in the WPCode Lite Plugin. There is no custom code that should change behavior, but I tried to disable all plugins and custom code, so it’s unlikely to be an issue with custom code.