Forum Replies Created
-
AuthorPosts
-
May 20, 2016 at 8:17 pm in reply to: Category/Tag Archive: show "read more text-link" and 2 columns instead of 3? #636036
your code works perfectly, thanks a lot!
May 19, 2016 at 11:47 pm in reply to: ENFOLD CSS: Inset Shadow for Layerslider is overlaid by the images – how to fix? #635603works fine, thanks a lot!
May 19, 2016 at 11:29 pm in reply to: Single Post: how to show only single image in the lightbox and not all others? #635599sorry for the delay, I tested your code, it works partly, and only together with the CSS that you referred to in your link above:
Goes to the functions.php:
// custom lightbox add_action('wp_footer', 'ava_custom_lightbox'); function ava_custom_lightbox(){ ?> <script type="text/javascript"> (function($) { $(window).load(function() { $('.single a').magnificPopup({ type: 'image' }); }); })(jQuery); </script> <?php }
and this needs to go to the custom.css:
.mfp-ready .mfp-figure { opacity: 1; }
But some things are not working now:
1. the image popup shows now not the image title
2. I cannot click the navigation items anymore. When I click on an menu item, then a warning comes “image could not be loaded”Please see test post link in private content. Thank you.
May 19, 2016 at 11:09 pm in reply to: How can I hide password protected posts from loop, archive, rss feed, widgets? #635592sorry for the delay, but your snippet works fine, thanks a lot!
May 17, 2016 at 3:32 pm in reply to: How to use Google Font only for specific elements, not for content/headlines? #633789Hi Rikard,
I know how to change the font of specific CSS/text elements. I added now this
<link href='https://fonts.googleapis.com/css?family=Cinzel' rel='stylesheet' type='text/css'>
to the header.php and changed my quote CSS to this font – works fine.
Perhaps I haven’t explained my question right – I just thought, if there’s perhaps a solution, adding the code for a new font in an easier way, for example in the functions.php (instead in the header.php like I have done now), because I use the plugin CodeSnippet and it would be easier to manage for me.
Or alternatively, I thought, that there would be perhaps a workaround like you have mentioned here » – just in general, nothing to do with my own installation.
May 17, 2016 at 8:23 am in reply to: What ALB element is used here: overlay with icon and tooltip? #633543Yes, thank you, that was it, great!
May 16, 2016 at 11:52 am in reply to: ALB Element "Blog Posts": what file for editing its layout please? #632873Hi Rikard,
no, I need to reconstruct this a bit, re-order the elements (date, categories etc.), that’s not only done with CSS. I just need the file name, where this is located, and then I guess, I will be able to “walk for my own” … I hope :-)
May 16, 2016 at 11:50 am in reply to: How to use Google Font only for specific elements, not for content/headlines? #632872Hi Rikard,
I just need a code snippet please, where and what I need to add, so that I can use a specific Google font just on specific elements, like quotes or something else. With the snippet mentioned in the documentation I can only have a Google font globally for the content or for headlines. But I would like to use ENFOLDs standard settings concerning the fonts, but only need to assign another Google font to some other text components.
May 16, 2016 at 11:48 am in reply to: Theme Options -> Advanced Styling: Change Font Family for widget titles? #632869Hi Rikard,
that has nothing to do with my installation, you might be able to reproduce this at your demo installation – it’s fact of the ENFOLD Advanced styling settings, which don’t offer that – see above please.
May 11, 2016 at 4:44 pm in reply to: Bug at multisite: breadcrumbs show twice the term "blog" at category/tag archive #630827It’s not resolved on my end – I’m currently moving to a new hoster, so I had to put this problem on hold, @kaylesimon.
By the way: your link/post is password protected.@Ismael:
Roberto Cavalli is a famous international fashion designer from Italy (https://en.wikipedia.org/wiki/Roberto_Cavalli)Ha, just stumbled accidentally upon the Blog of Roberto Cavalli … ENFOLD’s going famous ;-)
Made with ENFOLD: http://robertocavalliblog.com/photo/Hope, that’s okay, to post this here, otherwise delete it please …
And here are some other example collections of using ENFOLD I currently found:
Works fine, thank you!
Ahhhh okay, have overseen this in the theme settings, thank you!!!
That’s not my site, Yigit :-)
I would like to know, how the site’s owner has done this, so that I can do this at my own ENFOLD site, too?
May 1, 2016 at 10:55 pm in reply to: PHPMyAdmin / Database: where are the theme settings saved? #625408that sounds great, thanks for that idea, I will try this!
May 1, 2016 at 2:35 pm in reply to: PHPMyAdmin / Database: where are the theme settings saved? #625332yes, Rikard, I know, but this is the problem: my FTP data and WP installation at my hold hoster is already deleted, and I forgot to save my theme settings. So I thought, that there will be a way to grab them from the SQL database (phpMyAdmin), where I still have access.
April 28, 2016 at 7:31 pm in reply to: PHPMyAdmin / Database: where are the theme settings saved? #623953hi Andy,
thanks, but as stated above, for some reason I do not want to export/import the whole database – I just need the theme settings.
April 27, 2016 at 12:57 pm in reply to: https: Insecure item concerning the uploaded logo in ENFOLD's theme settings #622993simple, but effective, it works – thank you!
April 19, 2016 at 10:00 am in reply to: Bug at multisite: breadcrumbs show twice the term "blog" at category/tag archive #617258Hi Ismael,
thanks, but no, I checked the functions.php of ENFOLD 3.5.3 and there is nothing called “avia_breadcrumbs_trail”.
I downloaded yesterday the newest version of ENFOLD and therefor the functions.php is also the newest one.What do I need to do?
Thanks.April 18, 2016 at 12:54 pm in reply to: Function for excluding a tag ID below a single post? #616386Hi Rikard,
thank you, but I found last night a snippet in the WP forum, which works perfectly:
function mtstheme_filter_tags( $term_links ) { $result = array(); $exclude_tags = array( 'getestet' ); foreach ( $term_links as $link ) { foreach ( $exclude_tags as $tag ) { if ( stripos( $link, $tag ) !== false ) continue 2; } $result[] = $link; } return $result; } add_filter( "term_links-post_tag", 'mtstheme_filter_tags', 100, 1 );
in case someone needs this, too.
“getestet” is my tag, that should not appear below the single post view (no matter what post).I put this snippet in my Code-Snippet-Plugin instead of working with the theme’s original functions.php :-)
April 15, 2016 at 11:23 am in reply to: How to show different featured image in post preview as in single post view? #614722that sounds good, thanks a lot, Yigit! Guess, that would be the most uncomplicated way :-) I will try this that way … thanks!
April 14, 2016 at 11:19 pm in reply to: How to modify WP's standard tagcloud widget (adding parameter for limitation)? #614344Works fine with it, thank you, Rikard!
Thanks, Rikard,
I added after
echo $before_widget;
in line 953 this:
echo "<h3 class='widgettitle'>Your Combo Widget Headline</h3>";
if someone needs this, too, works fine, thanks!
thanks for that explanation. In this case I think it is better for me to let the featured image and sidebar “as is”.
Thank you!okay, thank you, I will take a look ..
But what happens to such posts, created with ALB, when I switch the theme some day (unlikely, but not impossible ;-) )?
Thanks, but what do you mean to build a custom layout for the blog? The blog page or a single post? I don’t understand, sorry …?
thanks a lot, Tameez!
April 8, 2016 at 5:59 pm in reply to: How to: show manual exerpt above single post's content #610351thank you, with the help of a friend I worked it out with this, if someone needs this, too:
// show manual excerpt only if there is one if ( is_single() ) { if ( $post->post_excerpt ) echo '<div class="manual-excerpt">' . get_the_excerpt() . '</div><div class="hr hr-short hr-center avia-builder-el-9 el_after_av_textblock avia-builder-el-last "> <span class="hr-inner "> <span class="hr-inner-style"></span> </span> </div> '; }
The CSS for this is:
.manual-excerpt { color: #8c919b; font-family: Oswald; font-size: 16px; letter-spacing: 1px; }
I’ve added a line below it, to separate the excerpt better from the rest of the content text.
Result:Thanks, Ismael, for pointing me into the right direction.
April 8, 2016 at 1:25 am in reply to: What ENFOLD elements to use for creating such photo-albums? #609944thank you Yigit, now I know, why it is not working:
I used “Masonry Gallery” instead of “Masonry” – and only “Masonry” has a sortable function.Thank you, now it’s all perfect.
-
AuthorPosts