Viewing 30 results - 241,471 through 241,500 (of 244,425 total)
  • Author
    Search Results
  • In enfold/config-layerslider/config.php, line 146:

    if(!is_admin() && !post_has_layerslider()) return;

    Both of these are false on any given page whether or not there is a slider on the page. Comment this line out and it works. I didn’t dig in too deeply so I’m not sure what else this affects.

    #26882
    JPDesign
    Participant

    Hi All

    Enfold is stunning, and giving me the opportunity to try all sorts of things, however, once I create a new page template and save it for later use on lots of pages, the client (as they do) changes a couple of things and I have to change all pages individually as I can’t find a way to ‘update’ or ‘overwrite’ my custom page template as I can’t use the same name.

    Am I missing how to do this simply ?

    Best regards

    Jeff

    #114765

    Can you please consider adding an Author Block as a builder element. Would be nice to be able to add an Author Block to a Blog post or have it added to all posts. Hope the masonry layout will make it further up on the list for Blog and possibly Portfolio. Thanks.

    #26881

    Topic: Meta Title

    in forum Enfold
    AdrianSmithUK
    Participant

    Hi

    I am using Yoast with Enfold and although I have the title tag to show:

    <title>[My Post Title] – [My Site Name]<title>

    I get:

    <title>[My Site Name] | [My Post Title] – [My Site Name]<title>

    I looked in the theme header and found:

    <title><?php if(function_exists(‘avia_set_title_tag’)) { echo avia_set_title_tag(); } ?></title>

    Is the avia_set_title_tag() function adding the unwanted text?

    Kind Regards

    #131683

    Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php and replace

    $thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' ><img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";

    with

    $thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' ><img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' /><span class='visible-caption'>{$caption}</span></a>";

    I guess you also need to add some custom style rules for the caption but it’s a starting point.

    #131526

    Hi!

    You can add the idea to the feature request list: https://kriesi.at/support/topic/enfold-feature-requests – if more users request this option we’ll look into it.

    Best regards,

    Peter

    #131635

    Hi,

    Please add the css below to the very bottom of your /css/custom.css file OR to Quick CSS located in Enfold > (Theme Options) > Layout styling at the page bottom.

    1) Title of Post slider (current setting below. if font size becomes too big , adjust line height)

    .avia-content-slider .slide-entry-title {
    font-size: 14px;
    line-height: 1.4em;
    }

    2) Overlays on hover for images (all set for you)

    .avia-content-slider .image-overlay  {
    display:none !important;
    }
    .avia-content-slider .image-overlay:hover {
    display:none !important;
    }
    .avia-content-slider .avia-font-entypo-fontello {
    display: none;
    }

    3) Arrows (all set)

    .avia-content-slider .avia-slideshow-arrows {
    display: none !important;
    }

    4) Annoying vertical movement (all set but you may need to adjust the height based on your page specifics…)

    .avia-content-slider .slide-entry {
    height: 310px;
    }

    Thanks,

    Nick

    tasoskouk
    Participant

    check here please : http://tasoskoukouvitis.com/enfold/shop/ – you see that image heights are not the same like in your demo

    (i’ ve selected crop in woocommerce settings & regenerated thumbs just in case… but with no luck…)

    how can i fix that ?

    thx!

    #26867
    gigoz
    Participant

    Hi,

    I was wondering if there is a way to change the colour of the top menu bar background. It is currently white, i would prefer it to the another colour. Please advise.

    Thanks

    MK

    #126516

    Thanks Devin,

    Now I need to find out how to place this function in my child theme, so that customization of the avia.js doesn’t disappear each time I upgrade the enfold theme folder with the latest version.

    Cheers,

    Gonzo

    #131859

    1) Yes – go to “Settings > Discussions” and deselect the “Allow people to post comments on new articles” checkbox.

    2) Yes – please use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to translate the missing text strings. Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    #131536

    In reply to: Related Posts

    Hallo,

    soweit ich weiß sind die related posts schon zufällig angeordnet. Möglicherweise musst du erst ein paar Einträge mit den gleichen Tags versehen, damit dieser Effekt sichtbar wird. Derzeit verwendet Kriesi in wp-contentthemesenfoldincludesrelated-posts.php folgende Abfrage:

    $my_query = get_posts(
    array(
    'tag__in' => $tag_ids,
    'post_type' => get_post_type($this_id),
    'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
    'orderby'=>'rand',
    'post__not_in' => array($this_id))
    );

    um die related posts darzustellen. Der ‘orderby’=>’rand’, Parameter stellt dabei sicher, dass diese Posts in zufälliger Reihenfolge angezeigt werden.

    #131448

    I noticed that you maybe need to add the code at the very top of functions.php. Replace

    <?php

    global $avia_config;

    with

    <?php

    global $avia_config;

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,600&subset=latin-ext';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,600&subset=latin,latin-ext';
    return $fonts;
    }

    and it should work. Please don’t forget to save the theme options again.

    2) The animations don’t work because some files are missing on your server – please re-upload/re-install the theme. Chrome reports

    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/prettyPhoto/css/prettyPhoto.css?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/mediaelement/skin-1/mediaelementplayer.css?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/mediaelement/mediaelement-and-player.min.js?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/avia-compat.js?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/avia.js?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/shortcodes.js?ver=1
    Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/prettyPhoto/js/jquery.prettyPhoto.js?ver=3.1.5

    Hi!

    Afaik this is not easily possible because these icons are probably missing in the font file but I’ll mark this thread for Kriesi.

    Regards,

    Peter

    #131358

    1) Use following css code to change the bg color of the top navigation bar

    .header_color .container_wrap_meta{
    background: #f8f8f8;
    }

    2) For the link color use

    .header_color .sub_menu>ul>li>a{
    color: #f8f8f8;
    }

    3) That’s not possible. If the logo is transparent you’ll always see the bg color of the container behind the logo (eg by default white like here: http://kriesi.at/themes/enfold/homepage/home-v6-classic-4-column/ )

    4) You can change the link bg color & the dropdown bg color with

    .bottom_nav_header.social_header .main_menu ul:first-child > li a, #header_main_alternate, .bottom_nav_header.social_header .main_menu ul:first-child {
    background: #f8f8f8;
    }

    5) Change the color with

    .header_color .main_menu ul:first-child > li a:hover, .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a, .header_color .main_menu ul:first-child > li.active-parent-item > a{
    color: #f8f8f8;
    }

    for the selected/active item and

    .bottom_nav_header.social_header .main_menu ul:first-child > li a{
    color: #f8f8f8;
    }

    for all other menu items.

    #114764

    A deeplinking feature for the AJAX portfolio ;) I would love to link to specific portfolio items from any page of my website.

    It would be cool if we could link to a extended ajax portfolio item.

    #131588

    The “entries from custom taxonomies” setting makes sense if you registered one or more custom taxonomies (eg by default Enfold registers the “Portfolio Entries” taxonomy). Then you can query posts from these taxonomies instead of the default posts/categories.

    #131789

    Hi Ismael,

    The site is currently password protected, would I be able to email you?

    Thanks,

    J

    #131788

    Hi,

    Did you adjust the height?

    Please give us a link to your website. Also, remove browser cache then reload the page.

    Regards,

    Ismael

    #114955

    Hi,

    @goldbaum: You can find a dutch translation here: http://www.mediafire.com/download.php?cwbpn4yna5wq76n, please contact yingfuli. :)

    https://kriesi.at/support/profile/yingfuli

    Regards,

    Ismael

    #131787

    Hi Ismael,

    Thanks for your reply, I did upload a logo and select fullsize, then use as logo.

    However, my image is being resized automatically to 200×100 (like the explanation text beside the upload box says)

    I’ve added the CSS into custom.css, however it still doesn’t work.

    #131786

    Hi,

    When you upload the logo, select the image size before clicking “Use Image as logo”. Then add this on your custom.css or Quick CSS

    /*header with social icons: */
    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 116px; line-height: 116px; }

    Resize the height and line-height according to the image height of your logo.

    Regards,

    Ismael

    #130429

    In reply to: Enfold tablles

    thanks Nick

    Tables work great but adding the custom css has effected the mega menu drop downs viewed on tablet portrait…they become truncated.

    No problem in landscape, for mobile or monitor.

    any help appreciated

    Hi,

    1.) Make sure you fill out Enfold > Header > Phone Number or small info text. Edit header.php, find this code

    $phone = avia_get_option('phone');
    $phone_class = !empty($nav) ? "with_nav" : "";
    if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";

    Cut it then place it below this comment:

    /*
    * display the themes social media icons, defined in the wordpress backend
    * the avia_social_media_icons function is located in includes/helper-social-media-php
    */

    Add this on your custom.css or Quick CSS

    .phone-info {
    padding-top: 10px;
    margin-left: -20px;
    }

    2.) Please give us a link to the website. We need to inspect your button. Try to change the input button color on Quick CSS

    .main_color input[type='submit'] {
    background-color: red;
    }

    Regards,

    Ismael;

    #131550

    Hi,

    Did you insert the Image element inside a 1/5 column element? The images with or without links inside a 1/5 column are responsive on my end. Please upgrade to Enfold 1.8.4.

    Can you give us a screenshot?

    Regards,

    Ismael

    #131758

    Hi,

    Are you trying to copy the html rendered by the shortcode? You can just copy the contact form shortcode:

    [av_contact email=///' button='Submit' title='Send us mail' sent='Your message has been sent!' autorespond='' captcha='']<br />
    [av_contact_field label='Name' type='text' check='is_empty']<br />
    [av_contact_field label='E-Mail' type='text' check='is_email']<br />
    [av_contact_field label='Subject' type='text' check='is_empty']<br />
    [av_contact_field label='Message' type='textarea' check='is_empty']<br />
    [/av_contact]

    This is the actual HTML input

    <form action="http://localhost/kriesi/enfold/?page_id=2307" method="post" class="ajax_form avia-builder-el-0 avia-builder-el-no-sibling " data-avia-form-id="1"><fieldset><h3>Send us mail</h3><p class='' id='element_avia_name_1'><label for="avia_name_1">Name <abbr class="required" title="required">*</abbr></label> <input name="avia_name_1" class="text_input is_empty" type="text" id="avia_name_1" value=""/></p><p class='' id='element_avia_e-mail_1'><label for="avia_e-mail_1">E-Mail <abbr class="required" title="required">*</abbr></label> <input name="avia_e-mail_1" class="text_input is_email" type="text" id="avia_e-mail_1" value=""/></p><p class='' id='element_avia_subject_1'><label for="avia_subject_1">Subject <abbr class="required" title="required">*</abbr></label> <input name="avia_subject_1" class="text_input is_empty" type="text" id="avia_subject_1" value=""/></p><p class='' id='element_avia_message_1'> <label for="avia_message_1" class="textare_label hidden textare_label_avia_message_1">Message <abbr class="required" title="required">*</abbr></label> <textarea name="avia_message_1" class="text_area is_empty" cols="40" rows="7" id="avia_message_1" ></textarea></p><p class="hidden"><input type="text" name="avia_avia_username_1" class="hidden " id="avia_avia_username_1" value="" /></p><p class=""><input type="hidden" value="1" name="avia_generated_form1" /><input type="submit" value="Submit" class="button" /></p></fieldset></form><div id="ajaxresponse_1" class="ajaxresponse ajaxresponse_1 hidden"></div>

    Regards,
    Ismael

    Hi,

    It won’t affect your site so you might want to hide the warning like Dude said.

    http://codex.wordpress.org/Editing_wp-config.php#Debug

    Regards,

    Ismael

    #116495

    In reply to: Enfold Showcase

    I love the big full screen slider as a fake footer Gstar72! Brilliant idea and has a fantastic effect :)

    Great job Tim! Glad you are enjoying the theme so much :)

    #131864

    Hi aribann,

    Yes definitely! With Enfold and most premium themes you can add simple css changes like you have above to the Quick CSS field. If you start to get a bit more in depth with your css changes you can add them to the custom.css file which gives you a more typical setup for how css is loaded into themes and websites.

    We even have a couple of media queries in the custom.css file so you can add different css that will load on only desktops or only tablet and below size screens.

    Regards,

    Devin

    #131345

    I have a page containing a series of links to our sermons. Over time, this list will grow to hundreds of links. How do I add pagination to this page to make navigation manageable? I would like to limit each page to about 15 links per page. Please refer to: http://www.gatewaychurchtest.net/sandbox0/aaa-2/

    Thank you very much

Viewing 30 results - 241,471 through 241,500 (of 244,425 total)