Tagged: tag cloud
-
AuthorPosts
-
February 4, 2016 at 7:47 am #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.
February 5, 2016 at 3:50 am #578193Hey 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,
ElliottFebruary 5, 2016 at 7:37 am #578323Thanks 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.
February 7, 2016 at 3:31 am #579114Hey!
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,
ElliottFebruary 9, 2016 at 7:38 am #580160Thanks 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?February 9, 2016 at 12:39 pm #580349Hey!
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 themeIf you have more questions please feel free to get in touch with us.
Best regards,
Vinay KashyapFebruary 9, 2016 at 10:03 pm #580605Thanks Vinay
I have followed your steps, but is seems that something isn’t working.
Please check the below URL.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.
February 10, 2016 at 11:20 am #580980Hi!
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 KashyapFebruary 10, 2016 at 3:43 pm #581191Dear 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 :-)
February 11, 2016 at 11:58 pm #581932Hey!
Tags are always displayed on the right sidebar in the admin interface.
It is the standard function :)Best regards,
Vinay KashyapFebruary 12, 2016 at 8:26 pm #582498Dear 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.February 17, 2016 at 3:08 pm #584761Hey!
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,
AndyFebruary 18, 2016 at 7:43 am #585209Dear 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 :-)
February 21, 2016 at 10:02 am #586622Hey!
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,
IsmaelFebruary 24, 2016 at 9:26 am #588245Great, thanks it works now :-)
February 25, 2016 at 6:49 am #588781May 31, 2017 at 8:59 pm #802178Dear 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!
June 1, 2017 at 5:46 pm #802684Hi 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,
VictoriaJune 8, 2017 at 5:39 pm #805681Thank you Victoria, I add the code in the Quick CSS, but nothing happend. Can you have a second look.
Thanks,
Michael
June 12, 2017 at 11:41 pm #807152Hi,
Please try
.avia-builder-el-3 a { color: red !important; }
let us know if it works
Best regards,
Basilis -
AuthorPosts
- You must be logged in to reply to this topic.