Supreme – widgets

This topic contains 11 replies, has 2 voices, and was last updated by  Sam 8 years, 10 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #192330

    Sam
    Buyer
    Post count: 172

    Hi Guys,

    The GD Home Page widgets are not showing up on the home page. I am able to enter information into the widget on the widget page but it doesn’t appear anywhere. And they do not show up in the Customize theme area either.(But i did notice that it will appear if I choose a region for some reason) Any help would be great!

    The footer widgets DO appear everywhere.

    Interesting Note… On my real site, I just uploaded 0.3.0. (Where the widgets are having an issue) On my demo site, I first had 0.2.0 and then updated to 0.3.0 and there are no widget issues there at all.

    Thanks!

    #192532

    Paolo
    Site Admin
    Post count: 31211

    That is because the Home page is a regualar page and when you select a location, you are visiting the location page.

    You can use beaver builder plugin to add widgets to the home page.

    Thanks

    #192744

    Sam
    Buyer
    Post count: 172
    This reply has been marked as private.
    #193012

    Paolo
    Site Admin
    Post count: 31211

    You’ll need to customize code in functions.php.

    Make sure to take note of this, because being Supreme a child theme, after next update (which should be last) you will ahve to apply this again.

    Open functions.php and change this:

    
    
                    $sd_address = '<div class="sd-address">';
                    if (isset($post->post_city) && $post->post_city) {
                        $sd_address .= $post->post_city;
                    }
                    if (isset($post->post_region) && $post->post_region) {
                        $sd_address .= ', ' . $post->post_region;
                    }
                    if (isset($post->post_country) && $post->post_country) {
                        $sd_address .= ', ' . $post->post_country;
                    }
                    $sd_address .= '</div>';
    

    with :

    
    
                    $sd_address = '<div class="sd-address">';
                    if (isset($post->post_address) && $post->post_address) {
                        $sd_address .= $post->post_address;
                    }
                    $sd_address .= '</br>';
    		  if (isset($post->post_city) && $post->post_city) {
                        $sd_address .= $post->post_city;
                    }
                    if (isset($post->post_region) && $post->post_region) {
                        $sd_address .= ', ' . $post->post_region;
                    }
                    if (isset($post->post_zip) && $post->post_zip) {
                        $sd_address .= ', ' . $post->post_zip;
                    }
                    if (isset($post->post_country) && $post->post_country) {
                        $sd_address .= ', ' . $post->post_country;
                    }$sd_address .= '</div>';
                    echo $sd_address;
    

    Starts at line 749.

    Thanks

    #193123

    Sam
    Buyer
    Post count: 172
    This reply has been marked as private.
    #193305

    Paolo
    Site Admin
    Post count: 31211
    This reply has been marked as private.
    #194635

    Sam
    Buyer
    Post count: 172
    This reply has been marked as private.
    #194750

    Sam
    Buyer
    Post count: 172
    This reply has been marked as private.
    #195134

    Paolo
    Site Admin
    Post count: 31211

    that looks correct. Good job! 🙂

    #195160

    Sam
    Buyer
    Post count: 172
    This reply has been marked as private.
    #195165

    Paolo
    Site Admin
    Post count: 31211

    🙂 Not that elementary…

    add:

    $sd_address .= '<strong>';

    before the custom field

    and

    $sd_address .= '</strong>';

    after the custom field.

    Let me know if it makes sense.

    Thanks

    #195350

    Sam
    Buyer
    Post count: 172
    This reply has been marked as private.
Viewing 12 posts - 1 through 12 (of 12 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount