Forum Replies Created
-
AuthorPosts
-
vukmilicevicParticipant
We are in the Genesis Blocks area talking about new Sharing Buttons, they look like this:
So, no, they are not "default" sharing buttons, Atomic Blocks became Genesis Blocks, migration was made properly and the backend simply doesn't render that part of commented wp:foo stuff. It burps a part of a first image and drops everything else out.
vukmilicevicParticipantThese are leftovers, not GB Sharing. Deleted that plugin and cleared the cache.
vukmilicevicParticipantThank you, Brad! Works, just have to run Regenerate Thumbnails now.
August 12, 2020 at 6:10 pm in reply to: Essence Pro – hamburger menu. Where to change the text itself? #500545vukmilicevicParticipantHere is the code to put in functions.php or in another way. Adjust other parameters as per your needs.
function genesis_sample_responsive_menu_settings() { $settings = array( 'mainMenu' => __('YOUR_MENU_NAME_OR_EMPTY', 'essence-pro'), 'menuIconClass' => 'dashicons-before dashicons-menu', 'subMenu' => __('Submenu', 'essence-pro'), 'subMenuIconClass' => 'dashicons-before dashicons-arrow-down-alt2', 'menuClasses' => array( 'combine' => array( '.nav-primary', ), 'others' => array(), ), ); return $settings; }
vukmilicevicParticipantHello,
Change "Poppins" to "Roboto" or "Roboto+Slab" and ditch the "200". Much more useful is 400,700 (which translates to normal and bold). Also, instead of display=optional, you should (as per Google's advice) use "display=swap".
By not using &display=swap, you will not have the issue with changing fonts (the short blink on the first load, however it will take an increased amount of time before any text using the font is visible on your website, and PageSpeedInsights will mark it as an error. Aggregation of such "errors" over time affects your SERP.
And, finally, you can combine fonts, just separate them with a pipe symbol:
//fonts.googleapis.com/css?family=Playfair+Display|Source+Serif+Pro|Suwannaphum&display=swap
-
AuthorPosts