Dustin Falgout
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Plugin broken on Divi ThemeHi,
I just wanted to note that we’re looking into this issue and we’ll do what we can to resolve it asap. I apologize for the inconvenience.
Best Regards,
Dustin Falgout
Elegant Themes, Inc.Forum: Plugins
In reply to: [Yoast SEO] Latest Versions of Yoast causing Divi page builder errorHi @foxtucker,
Could you provide me with your ET username so that I can locate your support ticket in our forum? Thanks!
Best Regards,
Dustin Falgout
Elegant ThemesForum: Plugins
In reply to: [WooCommerce] Updated Plugin and Products are Now MissingHi,
The issue you are experiencing is actually a bug in Divi 3.0.28. It was addressed in 3.0.29 so updating to the latest version will resolve the issue.
Best Regards,
Dustin Falgout
Elegant ThemesForum: Themes and Templates
In reply to: [Serene] Custom Front PageHi,
I’m afraid the theme doesn’t include page templates. You would have to use a child theme to implement a custom template. Sorry!
Best Regards,
DustinForum: Themes and Templates
In reply to: [Serene] taglineHi,
I’m afraid Serene does not support displaying the site tagline. You would have to customize it using a child theme in order to implement that functionality. Sorry!
Best Regards,
Dustin Falgout
Elegant ThemesForum: Themes and Templates
In reply to: [Serene] Hide Author Meta Info on a Specific Category of a PostCache is a web developer’s best friend AND worst enemy ??
Cheers!
Forum: Themes and Templates
In reply to: [Serene] Hide Author Meta Info on a Specific Category of a PostHi,
Try this style:
.single-grfwp-review .meta-info { display: none; }
I hope it helps!
Best Regards,
DustinMy pleasure ??
Forum: Themes and Templates
In reply to: Updating Child Theme Templates Doesn't Update Live Website1. Which templates are you trying to override exactly?
2. You need to make sure your function gets called after the one in the parent theme. Try this instead:
function custom_excerpt_length( $length ) { return 35; } add_filter( 'excerpt_length', 'custom_excerpt_length', 9999 );
Best Regards,
Dustin Falgout
Elegant ThemesSorry, I didn’t notice that you had a dependency set in your call to
wp_enqueue_style
. Use this code instead:<?php function et_serene_remove_fonts() { remove_action( 'wp_enqueue_scripts', 'et_serene_load_fonts' ); } add_action( 'init', 'et_serene_remove_fonts' ); function et_theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } add_action( 'wp_enqueue_scripts', 'et_theme_enqueue_styles' );
I should delete only this line:
wp_enqueue_style( ‘child-style’, get_stylesheet_directory_uri() . ‘/style.css’ );
Yes that’s correct.
ps Dustin, maybe you can help me with this issue too
Sure I can take a look ??
Cheers!
Hi,
Check your child theme’s
functions.php
and remove the line that contains the following:get_stylesheet_uri()
You don’t need to enqueue your child theme’s stylesheet as its already being enqueued by the parent theme ??
Let me know if you have any questions.
Best Regards,
Dustin Falgout
Elegant ThemesForum: Themes and Templates
In reply to: [Serene] No mouse over effects.My pleasure! ??
Cheers!
Forum: Themes and Templates
In reply to: [Serene] No mouse over effects.Hi there,
It appears that there is a syntax error in your footer.php file as none of the theme’s scripts are being output to the page. If you edited the footer.php file, I recommend that you revert your changes until you can determine exactly where the issue lies.
Best Regards,
Dustin Falgout
Elegant ThemesForum: Plugins
In reply to: [Yoast SEO] Images not in sitemap from website created with the Divi themeHi John-Pierre,
After taking a quick look at this it does appear there is a bug somewhere, though I am not sure at this point who is responsible. If you could, please open a new ticket in our support forum and we will be happy to assist you ??
Best Regards,
Dustin Falgout
Elegant Themes