Tagged: 

Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #577611

    Dear all,
    When using the default editor the post will have a nice tag cloud shown on the page.
    How can the same tag cloud being established when using the advanced lay out builder?
    I looked at the contect elements but couldn’t find it.

    Maybe I am overlooking. I am hoping that it’s possible to use the same tag cloud when working with the advanced lay out builder.

    Thanks for taking the time.

    #578193

    Hey michael_world2cycle!

    Try adding this to the bottom of your child theme functions.php file.

    function footag_func( $atts ) {
    	return the_tags();
    }
    add_shortcode( 'display_my_tags', 'footag_func' );
    

    And then use this inside a codeblock element.

    [display_my_tags]
    

    Regards,
    Elliott

    #578323

    Thanks Elliot,
    I was hoping that the code could be used in the quick CSS by just copy, paste.
    Can you maybe point out to a tutorial in which it explained how a child theme, like to one you mentioned, can be created.

    When you have a more easy of getting the tag cloud please let me know.

    #579114

    Hey!

    CSS is just for styling so it cannot be used.

    You can download an already build child theme here, http://kriesi.at/documentation/enfold/downloads/.

    Or watch this, https://vimeo.com/67221517.

    Best regards,
    Elliott

    #580160

    Thanks Elliot.
    Just to be sure.
    To add the short code in the functions.php I need to activate the child theme?
    By looking at the short movie wordpress will first check the child and then parent.
    But in which theme I need to continue working, child or parent?
    I do notice that the child theme doesn’t have my settings like the parent. This is also mentioned in the short movie. So if I need to continue working in the child I have re do my settings?

    #580349

    Hey!

    After you download and extract the child theme into the themes folder.

    1. Export your theme settings from Enfold > Import/Export
    2. Activate child theme from Appearance > Themes
    3. Import your main theme settings.
    4. add the code to functions.php in child theme

    If you have more questions please feel free to get in touch with us.

    Best regards,
    Vinay Kashyap

    #580605

    Thanks Vinay
    I have followed your steps, but is seems that something isn’t working.
    Please check the below URL.

    http://world2cycle.com/paris-roubaix/?preview_id=125&preview_nonce=261740cde0&post_format=standard&preview=true

    On the top left, underneath the Enfold logo, the tags are now displayed.
    When you look at the edit post this should have been displayed underneath the topic Range Slider / Logo.
    Also it seems that the tags are customized with the theme.

    Thanks for having a look.

    #580980

    Hi!

    The URL mentioned in the above post is not working just say’s “you do not have permission” while viewing as a logged in user.

    btw the tag’s are visible with Advance Layout builder in post only not on the pages. is that what you are looking for?

    Best regards,
    Vinay Kashyap

    #581191

    Dear Vinay,
    This is the link.
    Otherwise when you manage to login by using the details in the private area and go to Paris Roubaix.

    http://world2cycle.com/paris-roubaix/

    And please take a look at the following.
    On the top left, underneath the Enfold logo, the tags are now displayed.
    When you look at the edit post this should have been displayed underneath the topic Range Slider / Logo.
    Also it seems that the tags are customized with the theme.

    Thanks for taking the time :-)

    #581932

    Hey!

    Tags are always displayed on the right sidebar in the admin interface.
    It is the standard function :)

    Best regards,
    Vinay Kashyap

    #582498

    Dear Vinay,
    Hereby I would like to share the below url to clarfiy what I am hoping to get arranged when using the advanced lay out builder.
    The below url is done by using the default editor.

    http://world2cycle.com/liege-bastogne-liege/

    I should say that should be possible when using the advanced lay out builder and the postioning can be determine by using the content element and add the coding within this content element.

    Please see the post by using the below url to see what I did.

    http://world2cycle.com/liege-bastogne-liege/

    Your previous answer was not really clear as the tags are now displayed on the left side of the page.

    But by sharing the url’s hopefully this clarifies.
    Looking forward to your answer.

    #584761

    Hey!

    no idea what you want to do. Tags are shown to me in the middle of the link you have provided. So it seems to be good now to me. Can you confirm? Of not please send us a mockup showing the results you want to achieve.

    Regards,
    Andy

    #585209

    Dear Andy,
    Sorry you are right.
    The below post is built with the advanced lay out builder.
    Here the tags are being showed at the top left.

    http://world2cycle.com/paris-roubaix/

    The aim is to get same end result like is shown by the below post built with the default editor.

    http://world2cycle.com/liege-bastogne-liege/

    Thanks :-)

    #586622

    Hey!

    We modified the shortcode a bit. You can now add it like this: http://world2cycle.com/wp-admin/post.php?post=130&action=edit

    Regards,
    Ismael

    #588245

    Great, thanks it works now :-)

    #588781

    Hi,

    Glad we could help :-)

    Best regards,
    Rikard

    #802178

    Dear all,
    You have provided me support on how to get tags being displayed on my website.

    (look at the right of the page)

    Now what I would like to achieve, is that have the option to customize the Tags, like for example the Font, Background color…

    Do you have any ideas how to achieve by using Enfold.

    Hereby the information shared previously.

    Try adding this to the bottom of your child theme functions.php file.

    function footag_func( $atts ) {
    return the_tags();
    }
    add_shortcode( ‘display_my_tags’, ‘footag_func’ );
    And then use this inside a codeblock element.

    [display_my_tags]

    Thank you!

    #802684

    Hi michael_world2cycle,

    You can use css to do that. Something like this:

    
    .avia-builder-el-3 a {
      color: red;  
    }
    

    Put this in your child theme style.css and see what happens :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #805681

    Thank you Victoria, I add the code in the Quick CSS, but nothing happend. Can you have a second look.

    Thanks,

    Michael

    #807152

    Hi,

    Please try

    .avia-builder-el-3 a {
      color: red !important;  
    }

    let us know if it works

    Best regards,
    Basilis

Viewing 20 posts - 1 through 20 (of 20 total)
  • You must be logged in to reply to this topic.