elisabeth01
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Astra] Can the theme developer team help me with a child themeHi Kernix,
Please take a look at this link below and scroll down to Sample Template File
https://codex.wordpress.org/Author_TemplatesLet’s start simple:
If there aren’t any posts by the author, you should use:<p><?php esc_html_e('No posts by this author.','astra-child'); ?></p>instead ofget_template_part( 'template-parts/content', 'none' );<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>can be omitted; it’s of no use here.If I look closely at content-posts.php, you’re are calling another template file
get_template_part( 'template-parts/content', 'author' );. So I’m not surprised by the infinite loop issue you’re experiencing especially if the author has many posts.
Temporarily remove that line of code and check again to see if that solved your issue.Kind regards,
ElisabethHi Ahmed,
You can add the following css code inside WP Customizer under Additional CSS:
.woocommerce div.product form.cart .variations {text-align:left}Kind regards,
ElisabethForum: Themes and Templates
In reply to: [Astra] Problem with removing a segmentHi Sparpengen,
Go to Appearance > Elementor Header & Footer Builder and then delete the Before Footer template.
Kind regards,
ElisabethForum: Themes and Templates
In reply to: [Astra] Uncaught ReferenceError bodyElement is not definedHi Pjlam,
var bodyElement = document.body;seems to be missing.Edit:
This is for Astra 3.7.6 (free version)!
var bodyElement = document.body; if( 'Safari' === M[0] && M[1] < 11 ) { bodyElement.classList.add( "ast-safari-browser-less-than-11" ); }The code you shared is slightly different in your older version.
- This reply was modified 4 years, 4 months ago by elisabeth01.
- This reply was modified 4 years, 4 months ago by elisabeth01.
Forum: Themes and Templates
In reply to: [Astra] Footer Widgets 1 & 2 & 3 & 4Hi Matonanjin,
Widget 1 is actually Widgetized Sidebar 1 in terms of WordPress code structure. Inside this Widgetized Sidebar 1 you can add multiple widgets. These widgets are the same that you find when you go to the WP Admin > Appearance > Widgets screen.
As you might know, the widgets screen has changed to a block-based widgets editor in WP 5.8. You can use the Legacy Widget block to display third party widgets that hasn’t been converted to a block.
I hope this clears up your confusion.
Kind regards,
ElisabethForum: Themes and Templates
In reply to: [Astra] Can the theme developer team help me with a child themeHi Kernix,
“Every marathon begins with a single step,” so you’re doing great learning to create your own (child) theme. Never give up!
In order to receive better help, how about sharing your author.php file?
Kind regards,
Elisabeth