• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

famarinu

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 14 posts - 21 through 34 (of 34 total)
← 1 2
  • Author
    Posts
  • March 13, 2017 at 12:52 am in reply to: title before the image in the home #202974
    famarinu
    Member

    I resolved!

    March 13, 2017 at 12:42 am in reply to: title before the image in the home #202972
    famarinu
    Member

    Yes it is correct!
    I try to add the this code in my function.php:

    include_once( get_stylesheet_directory() . '/genesis-post-widget.php' );
    
    add_action( 'widgets_init', 'wpsites_custom_widget_init' );
    function wpsites_custom_widget_init() {
     register_widget('Genesis_Post');
    }

    But not working, gives me a blank page. What I do? My theme is Lifestyle-Pro

    February 25, 2017 at 8:42 am in reply to: change language #201945
    famarinu
    Member

    sorry, but for change the title of Arichives? In the "code snippets page" I not it find.
    Thank you!

    February 23, 2017 at 12:33 pm in reply to: change language #201833
    famarinu
    Member

    Yes it work, thank you!

    February 23, 2017 at 1:00 am in reply to: change language #201807
    famarinu
    Member

    Ok, thank you!
    I don't find how can I change the "Filed Under" in the footer post.
    Where is the guide?
    Thanks

    February 19, 2017 at 7:53 am in reply to: Adding Google Analytics Info? #201527
    famarinu
    Member

    Hi,
    I have been following this post to insert google analytics to my website.
    if I go to read the source code in the bowser I do not see it.
    The theme I use is lifestyle pro.
    If I want to add manually I have to use this method:

    add_action ('genesis_before', 'add_google_analytics_code');
    add_google_analytics_code function () {
    echo '<script>
       (Function (i, s, o, g, r, a, m) {i ['GoogleAnalyticsObject'] = r i [r] = i [r] || function () {
       (I [r] .q = i [r] .q || []). Push (arguments)}, the [r] .l = 1 * new Date (); a = s.createElement (o),
       m = s.getElementsByTagName (or) [0]; a.async = 1; a.src = g; m.parentNode.insertBefore (a, m)
       }) (Window, document, 'script', 'https: //www.google-analytics.com/analytics.js','ga');
    
       ga ('create', 'xxxxxxxxx', 'car');
       ga ('send', 'pageview');
    
    </ Script> ';
    }

    but it give me error, why?

    February 19, 2017 at 6:54 am in reply to: change name in comments #201496
    famarinu
    Member

    No, this change the title_reply.
    I want to change the label for="name"

    February 19, 2017 at 6:35 am in reply to: change name in comments #201492
    famarinu
    Member

    I want change in the "Leave a comment". I want change the label from: Name to Name or nickname and in the Email change in the e-mail

    February 19, 2017 at 12:21 am in reply to: add privacy policy #201482
    famarinu
    Member

    Hi,
    What is the submit button ID?
    The submit button ID is "submit"

    Thank you!

    February 2, 2017 at 4:27 am in reply to: add privacy policy #200421
    famarinu
    Member

    I add this code for add the checkbox and it work.

    //***Customize The Comment Form**/
    add_filter( 'comment_form_defaults', 'crunchify_custom_comment_form' );
    function crunchify_custom_comment_form($fields) {
        $fields['comment_notes_after'] = '<input name="MMERGE4" type="checkbox" value="Si" required > 
      		<span style="font-size:10px"> autorizzo il trattamento dei miei dati personali ai sensi del D.Lgs. n. 196/2003.</span><br>
    '; 
        return $fields;
    }

    But the comment should not be added if the check box do not selected. How do I do this?
    Thank you!

    January 30, 2017 at 4:58 am in reply to: Comment #200241
    famarinu
    Member

    Thank you!

    January 25, 2017 at 2:31 am in reply to: Comment #199980
    famarinu
    Member

    I want to change the order of

    <div class="entry-comments" id="comments"> and <div id="respond" class="comment-respond">

    How do I that?

    Thanks

    January 24, 2017 at 1:16 am in reply to: add javascript #199920
    famarinu
    Member

    I solved the problem. thank you

    January 23, 2017 at 5:03 am in reply to: add javascript #199847
    famarinu
    Member

    I try, but not working.
    Aniway, my theme is "Lifestyle pro".
    I want people clicked on "Click here to view the comments" to display comments.
    For make this I add in the functions.php. This:

           //* add a link
            add_filter( 'genesis_title_comments', 'sp_genesis_title_comments' );
            function sp_genesis_title_comments() {
    	$title = '<a href="#" ID="Leave_a_comment"><h3>Click here to view the comments<h3></a>';
    	return $title;
            }

    and this after "wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=Droid+Sans:400,700|Roboto+Slab:400,300,700', array(), CHILD_THEME_VERSION );":

    wp_enqueue_script( '', get_bloginfo( 'stylesheet_directory' ) . '/js/comment.js', array( 'jquery' ), '1.0.0' );

    I have create also a comment.js

    jQuery(function( $ ){
    
        $(document).ready(function() {
                $('#Leave_a_comment').click(function() {
                    $('#comment-list').show();
                });
            });
     
    });

    And then I add in style.css this code:

    
    .comment-list {
        display: none;
    }

    But somethin not working 🙁

  • Author
    Posts
Viewing 14 posts - 21 through 34 (of 34 total)
← 1 2
« Previous Page

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble