makai93
Forum Replies Created
-
Thank’s a lot and have a great day too!
I found the solution here :?https://wpastra.com/docs/understanding-container-style-in-astra-theme-customizing-your-containers-look/
Forum: Fixing WordPress
In reply to: Display the list of posts using a personal pageYou’re right, I hadn’t thought it could come from the pluggin but from me!
I sent a message to the forum and I’ve already received a reply “Unfortunately, this option is not available at the moment in Premium Addons”
Thank’s
I found the solution here : https://wpastra.com/docs/understanding-container-style-in-astra-theme-customizing-your-containers-look/
Forum: Plugins
In reply to: [Contact Form 7] Move the send/error confirmation messageWonderful !
Thank’s a lot
Forum: Plugins
In reply to: [Contact Form 7] return validation messages in a popup / hide formYou are WONDERFUL !!!
Thank’s
Forum: Themes and Templates
In reply to: [Astra] ABout starter templates and Elementor containersPerhaps from a Starter Templates designed using Columns, you can convert each Section into Flexbox container and then adjust any changes generated by the conversion?
It’s just an idea…
Hi,
I made several manipulations:
- deactivated all the plugins except Elementor
- emptied the caches
- regenerated the css
- reactivated the plugins one by one (and verified flexbox)
- changed theme. I’m now using ASTRA
I’ve open 2 pages that I used for testing and now, on 1 page, the containers work correctly and the other doesn’t ;-(((
The 2 pages are very similar, very simple, with same template :Elementor – Full width
I even copied a container from the ok page / pasted it into the bad page and unfortunately I still have the same problem, the Full width is not active and this is the case on 90% of the pages on my site ;-(((https://relaxed.fr/page-flexbox/ => Flexbox ok
https://relaxed.fr/page_bad_flexbox/ => Flexbox not ok
Would you have please a suggestion for me, something I might have forgotten ?
Thanks in advance and have a wonderful dayThank you for your reply
I understand the idea, but the result on my screen is not good. The blocks are true 100% width but the origin of the blocks is 50% of my screen.
I’ll leave you a screenshot : https://drive.google.com/file/d/1c46NZa_6PEfPOj81zf99Hc_zRjOoiCpL/view?usp=drive_link
- This reply was modified 1 year, 1 month ago by makai93.
Hello,
I have the same problem…
Can you please tell me if you have found a solution?
Thank youForum: Themes and Templates
In reply to: [Karuna] Pagination in single post page (category)Hi,
The link for next and previous post is in single.php :<div class="navigation"> <div class="previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'max-magazine' ) . '</span> %title', TRUE ; ?></div> <div class="next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'max-magazine' ) . '</span>', TRUE ); ?></div> </div><!-- #navigation -->
I see the value TRUE for the parameter $in_same_term (WordPress codex – Reference – Functions – previous_post_link()), but it doesn’t work.
All the posts are shown whatever the category…So, why doesn’t it run as expected ? Do you have an idea ?
Thank you- This reply was modified 6 years, 6 months ago by makai93.
Forum: Themes and Templates
In reply to: [Karuna] 2 categories with 2 differents displaysHi,
In WordPress codex – Category Templates, it’s write this :In the case of categories, the hierarchy is fairly simple. For instance, suppose the slug of the Category in question is news and the Category ID is 6. The Template Hierarchy specifies that WordPress will use the first Template file it finds in your current Theme’s directory from the following list:
- category-slug.php
- category-ID.php
- category.php
- archive.php
- index.php
That is, if you do not have a category-slug.php (lets say category-news.php), WordPress will check for a category-ID.php (like category-6.php), and so on.
I think adding category-ID.php files in the theme child, might be a solution.
I did not test it because I found another solution…If it can be of use to somebody
Thank you
Forum: Themes and Templates
In reply to: [Karuna] Category templateHi,
In child-theme, I copied content.php and I modified this :if ( is_category('6') ) { the_excerpt(sprintf(...) ... } else { the_content( sprintf(...) ... }
And I add an excerpt in posts of category-id=6.
It isn’t the right way but now it’s ok for meIf it can be of use to somebody
Thank you
Hi,
In child-theme, I copied recent-posts.php and I modified this :$recent = new WP_Query( array( 'posts_per_page' => 4, 'cat' => 5, // I added this criteria 'no_found_rows' => true, 'ignore_sticky_posts' => true, ) );
Now it’s ok
If it can be of use to somebody
Thank you
Forum: Themes and Templates
In reply to: [Karuna] More than one blog listing pageIn child-theme, I copied content.php and I modified this :
if ( is_category('6') ) { the_excerpt(sprintf(...) ... } else { the_content( sprintf(...) ... }
Now it’s ok
Thank you