Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3228680
Block Heading
Closed

Comments

  • marcusbrownrealestate started the conversation

    A few questions:

    1. How do you customize the default settings for the penci block heading? (See image). I cannot find an area to customize when i look through Appearance > Customize.

    2. Can I setup the penci block headings to be an h2 heading element?

    3. On grid, is there a way to remove the " ..." at end of the excerpt? (See Image)

    Attached files:  Screenshot 2023-02-10 021016.png
      Screenshot 2023-02-10 021248.png

  •  2,486
    PenciDesign replied

    Hi,

    1. Please go to Appearance > Customize > Sidebar > General > Sidebar Widget Heading Style: change the default style here,

    2. Unfortunately, the current version of Soledad doesn't include the option that helps you customize the HTML markup, we'll consider adding this feature in the future theme update,

    3. About this customize, please read the document here: https://www.wpbeginner.com/plugins/how-to-customize-wordpress-excerpts-no-coding-required/

    Regards,
    PenciDesign.


  • marcusbrownrealestate replied

    Do you happen to have a code snippet that would work to remove the ellipsis " ..." on the gid posts?

  •  2,486
    PenciDesign replied

    Hi,

    Please add the following code to the Soledad child theme "functions.php" file or via the Code Snippet plugin here:

    function new_excerpt_more( $more ) {
    	return '[.....]';
    }
    add_filter('excerpt_more', 'new_excerpt_more');

    ChangeĀ [.....] with the text you want to show.


    Regards,
    PenciDesign.


  • marcusbrownrealestate replied

    I did this, but it does not appear to work

  •  2,486
    PenciDesign replied

    Hi,

    For this case, please send me your WordPress admin account.
    I'll log in and try to help you check it.

    Regards,
    PenciDesign.



  •   marcusbrownrealestate replied privately
  •  2,486
    PenciDesign replied

    Hi,

    I've updated your site.

    Please check.

    Regards,
    PenciDesign.


  • marcusbrownrealestate replied

    Thank you