Viewing 30 results - 218,761 through 218,790 (of 243,737 total)
  • Author
    Search Results
  • #279230

    Hi nurdwurks!

    Thank you for using the theme.

    We actually prefer a single question on a single thread. Much easier for us to answer them on that manner. Also, it’ll be useful for other users asking for the same question.

    1.) You can remove the title with this on Quick CSS:

    h1.main-title.entry-title {
    display: none;
    }

    2.) Add this on functions.php:

    add_filter('avia_post_nav_entries', 'avia_apply_custom_sort_order_to_post_nav', 10, 2);
    function avia_apply_custom_sort_order_to_post_nav($entries, $settings)
    {
    	if(!empty($entries['prev'])) $temp = $entries['prev'];
    	if(!empty($entries['next'])) $entries['prev'] = $entries['next'];
    	if(!empty($temp)) $entries['next'] = $temp;
    	return $entries;
    }

    For the category filter, add this:

    function avf_same_category_navigation($settings) {
          if($settings['taxonomy'] == 'portfolio_entries')  $settings['is_fullwidth'] = true;
          return $settings;
      }
    
      add_filter('avia_post_nav_settings','avf_same_category_navigation', 10

    3.) Edit the search.php or the includes > loop-search.php.

    4.) Change the color of the ampersand with this on Quick CSS:

    .main_color .special_amp {
    color: red;
    }

    5.) Please refer to this link on how to fix permalink issues: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems

    6.) Change the iconlist background color with this:

    .main_color .avia-icon-list .iconlist_icon {
    background-color: red;
    }

    7.) We can set a specific width for the gallery but it might break the responsiveness of the element. Please select the thumbnail size on the Gallery Preview Image Size option.

    8.) Do you mind providing a screenshot of this pointer?

    9.) You can decrease the padding or adjust the width and height with this:

    .av_font_icon.av-icon-style-border .av-icon-char {
    width: 30px !important;
    height: 30px !important;
    padding: 10px;
    }

    10.) Use this to change the hover color of the icon and icon list elemen:

    #top .main_color .av-no-color.av-icon-style-border a.av-icon-char:hover {
    color: red;
    }
    
    .main_color .avia-icon-list .iconlist_icon:hover {
    background-color: blue;
    }

    11.) Edit the menu font on Enfold > Advanced Styling. Edit the Main Menu Link element.

    12.) You can use media queries to hide or remove the accordion slider for mobile device:

    @media only screen and (max-width: 767px) {
    .avia-accordion-slider-wrap {
    display: none;
    }
    }

    Before posting a question, please take some time to search on the forum or review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Cheers!
    Ismael

    #279221

    Topic: Visual Form Builder

    in forum Enfold
    ksiarza
    Participant

    Hi guys, I use Visual Form Builder as my form plugin of choice. I noticed my formatting gets wiped when I use it with the Enfold theme. Any suggestions to make it look pretty or play nicely with your theme?

    #279218

    In reply to: specific box height

    Hi Sinead!

    Try enabling this:
    http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Then set a custom class to the elements you want to affect and add this to the Quick CSS:

    .elements{
    height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    }

    Cheers!
    Josue

    #279217

    In reply to: Avia Gallery editing?

    Hey fortuneRice!

    Thank you for visiting the support forum!

    I’m sorry but you won’t be able to go back to the shortcode option panel again if you use the shortcode wand to insert the element. If I am not mistaken, you’re adding the gallery on a posts. Posts does not support the advance layout builder yet. You can add the feature for post s but we won’t provide any support for it. Edit wp-content > themes > enfold > config-templatebuilder > avia-template-builder > config > meta.php, find this code on line 5:

    array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
    

    Replace it with:

    array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page', 'post'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
    

    Regards,
    Ismael

    #279213

    Hello,

    Do you have the latest version of Enfold (2.8.1) / WordPress(3.9.1)? have you tried disabling all third-party plugins to see if it gets fixed?

    Regards,
    Josue

    #279210

    In reply to: Logo and menu CENTER

    Hey Jane!

    Thank you for visiting the support forum!

    What is the version of your Safari browser? Please post the actual link to the website here so that we can inspect it. Make sure that you’re running Enfold 2.8.1 with the latest version of WordPress.

    Best regards,
    Ismael

    #279200

    Hi SMDNAS!

    Thank you for visiting the support forum!

    Yes, that is possible but first you need to add the avia_template_builder_custom_css support. You’ll be able to add a unique selector for each Avia Elements. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    Edit any avia elements like the iconbox element then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “iconbox-bg”.

    You can add something like this on your custom.css or Quick CSS:

    .iconbox.iconbox-bg .iconbox_content {
    background: red;
    }

    Refer to this link for more info: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Ismael

    #279184

    Hi Nelson!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    #footer { padding-top: 0; padding-bottom: 10px; }

    Best regards,
    Yigit

    #279182

    Hi!

    Yes, you can. You can add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .av-masonry-sort a { font-size: 16px; }

    Best regards,
    Yigit

    #279178

    In reply to: off the effect picture

    Hey Greglen!

    Please see – http://kriesi.at/documentation/enfold/disable-css-overlay-on-images/

    Best regards,
    Yigit

    #279176
    sdbroker
    Participant

    Hello,

    I noticed 2 issues with the image/post/page title on the accordion slider:

    1) The title correctly gets the itemprop="headline" markup, however there is not H tag applied to the title. Shouldn’t at least be an option to select an H tag when inserting the title?

    2) On responsive media screens under 768px, the image/post/page title is not visible (as it can be seen on Enfold’s demo page). I believe that instead of not displaying the title on smaller media screens (as it is currently set), the title typography should be adjusted to smaller font-sizes to fit nicely on the tile wrap. This is not a problem when portfolio images are set on the slider but it is a problem when posts or pages are set because the reader does not know what the image is all about and most likely will not click on the link.

    Is there a fix for these issues? BTW – the font size typography on title tags and entry-title should also be adjusted to scale smaller font sizes as the screen media gets smaller. As it currently is set to remain the same size as the screen gets smaller, it doesn’t look good (to me) compared to the much smaller typography of the content..

    Thank you,
    George

    #279160

    Topic: Responsive Site Isuues

    in forum Enfold
    sdbroker
    Participant

    Hello,

    I noticed that on media screens under 989px and I believe up to 768px there’s A LOT of empty space (padding or margin) to the left & right of the main content and sidebar. That would be fine on full width pages but on pages that use sidebar, it makes the sidebar unusable, especially when using forms that require a minimum width of at least 180px to 200px.

    This extra space between the USABLE grid does not exist on other media screen sizes in which the sidebar is usable, appearing to left or right on screen above 989px and on the bottom (if desired) on screens under 768px.

    Is there a fix to eliminate this excess padding or margin that occurs between 989px to 768px media screens?

    Here’s an example on Enfold’s own demo site which the issue can be seen by adjusting the screen size.
    Thank you,
    George

    #279155

    Hola,

    Si, de momento solo yo hablo Español en el equipo.

    Sobre el problema, es así como funciona el fullscreen slider en este momento, puedes notarlo en este demo incluso:
    http://kriesi.at/themes/enfold/homepage/transparent-header/

    Esto no quiere decir que así sea para siempre, estamos trabajando en arreglar estos problemas. Mientras tanto, te recomendaría utilizar un LayerSlider, para la flecha podrías poner este código en una capa HTML y acomodarla en la parte de abajo:

    <a href="#next-section" title="" class="scroll-down-link" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></a>
    

    Saludos,
    Josue

    #279154

    In reply to: errors in code

    I installed the whole site anew, from scratch, and still register a lot of errors in http://raygun.io/.

    Like this:

    Error: gzinflate(): data error
    #0 Raygun4php\RaygunClient::SendError called at [/usr/www/users/skoroj/skorosvadba/wp-content/plugins/raygun4wp/main.php:124]
    #1 ::error_handler called at [:0]
    #2 ::gzinflate called at [/usr/www/users/skoroj/skorosvadba/wp-includes/class-http.php:1963]
    #3 WP_Http_Encoding::decompress called at [/usr/www/users/skoroj/skorosvadba/wp-includes/class-http.php:1422]
    #4 WP_Http_Curl::request called at [/usr/www/users/skoroj/skorosvadba/wp-includes/class-http.php:333]
    #5 WP_Http::_dispatch_request called at [/usr/www/users/skoroj/skorosvadba/wp-includes/class-http.php:249]
    #6 WP_Http::request called at [/usr/www/users/skoroj/skorosvadba/wp-includes/http.php:163]
    #7 ::wp_remote_request called at [/usr/www/users/skoroj/skorosvadba/wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php:342]
    #8 Envato_Protected_API::remote_request called at [/usr/www/users/skoroj/skorosvadba/wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php:254]
    #9 Envato_Protected_API::set_cache called at [/usr/www/users/skoroj/skorosvadba/wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php:113]
    #10 Envato_Protected_API::private_user_data called at [/usr/www/users/skoroj/skorosvadba/wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php:149]
    #11 Envato_Protected_API::wp_list_themes called at [/usr/www/users/skoroj/skorosvadba/wp-content/themes/enfold/framework/php/auto-updates/class-pixelentity-theme-update.php:39]
    #12 PixelentityThemeUpdate::check called at [:0]
    #13 ::call_user_func_array called at [/usr/www/users/skoroj/skorosvadba/wp-includes/plugin.php:192]
    #14 ::apply_filters called at [/usr/www/users/skoroj/skorosvadba/wp-includes/option.php:1379]
    #15 ::set_site_transient called at [/usr/www/users/skoroj/skorosvadba/wp-includes/update.php:401]
    #16 ::wp_update_themes called at [:0]
    #17 ::call_user_func_array called at [/usr/www/users/skoroj/skorosvadba/wp-includes/plugin.php:470]
    #18 ::do_action called at [/usr/www/users/skoroj/skorosvadba/wp-admin/admin.php:315]
    #19 ::require_once called at [/usr/www/users/skoroj/skorosvadba/wp-admin/themes.php:10]

    or like this:

    Error: Trying to get property of non-object
    #0 Raygun4php\RaygunClient::SendError called at [/usr/www/users/skoroj/skorosvadba/wp-content/plugins/raygun4wp/main.php:124]
    #1 ::error_handler called at [/usr/www/users/skoroj/skorosvadba/wp-includes/post-template.php:29]
    #2 ::get_the_ID called at [/usr/www/users/skoroj/skorosvadba/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/template-builder.class.php:422]
    #3 AviaBuilder::template_redirect called at [:0]
    #4 ::call_user_func_array called at [/usr/www/users/skoroj/skorosvadba/wp-includes/plugin.php:470]
    #5 ::do_action called at [/usr/www/users/skoroj/skorosvadba/wp-includes/template-loader.php:12]
    #6 ::require_once called at [/usr/www/users/skoroj/skorosvadba/wp-blog-header.php:16]
    #7 ::require called at [/usr/www/users/skoroj/skorosvadba/index.php:17]
    #279139

    In reply to: Problem with portfolio

    Hi Devin,

    I have a big problem with my site.
    After update I no see my site, I have the error below:

    Warning: require_once(config-bbpress/config.php): failed to open stream: No such file or directory in /web/htdocs/www.stpr.it/home/wp-content/themes/enfold_XXX/functions.php on line 398 Fatal error: require_once(): Failed opening required ‘config-bbpress/config.php’ (include_path=’.:/php5.3/lib/php/’) in /web/htdocs/www.stpr.it/home/wp-content/themes/enfold_XXX/functions.php on line 398

    Can you help me? Is a big problem for me :( :( :(

    Thank you very much
    Patrizia

    #279104

    In reply to: Sidebar Problem

    Hey erkuto!

    Please see – http://kriesi.at/documentation/enfold/change-woocommerce-single-product-page-layout/

    Regards,
    Yigit

    #279088

    Hi fortuneRice!

    Sure, please see – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Best regards,
    Yigit

    Hey pako69!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .blog-author, .text-sep-cat, .blog-categories, .text-sep-comment {
    display: none !important;
    }

    Best regards,
    Yigit

    #279083

    Hey SMDNAS!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .textwidget a .image-overlay {
    visibility: hidden!important;
    }

    Cheers!
    Yigit

    #279080

    Hi Yigit,

    thanks fro the quick response.
    Unfortunately that did not work (and cache was cleared as well)

    Is my assumption correct the the quick.css is populated to the dynamic_avia/enfold.css file ?

    I tried looking for that line (W/O the important!) and could not find it.

    any idea?
    thanks
    Yoav

    #279078

    Hi romero2!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    li.empty-table-cell {
    visibility: hidden;
    }

    Regards,
    Yigit

    #279074
    assaftoval
    Participant

    Hi,

    I need to create a chrome inline installation but at the moment the button element let me choose only links.

    when trying to add a simple text with a
    <form><input type=”button” value=”InstallNow” onClick=”chrome.webstore.install();”></form>

    the system deletes the onclick event

    Any idea how I can achieve this?

    we are using Enfold 2.6
    Thanks
    Yoav

    • This topic was modified 11 years, 6 months ago by assaftoval.
    #279071

    Hello
    1- For the first issue (Javascript conflict with function trigger_default_open()), here is the plugin autho response:

    ——
    No, anchors do not require href attributes since HTML5, and it is not essential. The ShiftNav toggle code is perfectly valid.
    Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a

    href – This was the single required attribute for anchors defining a hypertext source link, but is no longer required in HTML5.

    ShiftNav does not break your theme code – your theme code throws an error because it is making assumptions about the elements on the page. This wouldn’t be a problem if it were only dealing with its own elements, but it is binding events to elements that it hasn’t produced, meaning it isn’t controlling the attributes. The theme code should not be assuming that an href is present, when it is not required.

    I read through your post in the Kriesi forum. Then I looked at the theme code in /wp-content/themes/enfold/js/shortcodes.js

    I think this code:

    [js]
    $('a').on('click',function(){
    var hash = $(this).attr('href').replace(/^.*?#/,'');
    if(hash) trigger_default_open('#'+hash);
    });
    [/js]

    should just be written like this:

    [js]
    $('a[href]').on('click',function(){
    var hash = $(this).attr('href').replace(/^.*?#/,'');
    if(hash) trigger_default_open('#'+hash);
    });
    [/js]
    

    That way it only attaches to anchors with href elements, and in the callback you can be sure the href exists. The solution is simple and efficient, and there’s no need to bind the callback to any anchor without an href.
    ——
    So to make it work I replace the A tag of my ShiftNav Menu by a SPAN, this is a workaround, and maybe you could tell to Kriesi about that… ?

    2/ “To be honest i think it would be better to set a fallback image, background video playback in mobiles is buggy right now.
    Should be great to also tell to Kriesi about that issue, don’t you think ?

    #279067
    assaftoval
    Participant

    Hi,
    I have a pricing table with 3 columns.
    the third column header text is orange and I need to change it to 3692D0.

    I have modified the custom.css, but sine it appears before the web-pricing-tables.css, those settings get overridden.

    Next attempt want to add the following line to the quick.css
    .orange .table-price {color:#3692D0;}
    But again this does not help,

    In general I cannot find any of the lines I am adding to the quick.css in the page (or in the dynamic_avia/enfold.css)

    I am using wordPress 3.9
    Enfold 2.6

    And help will be highly appreciated

    Yoav

    #279057
    FriViden
    Participant

    I want to update my enfold theme. I have made a child theme.
    Is the way to update to select “enfold child” and then select “Theme update”.

    Or will this action delete my Work?

    As a newcomer to programming and wordpress i have not yet the full understanding og how to update?

    Kind regards

    #279013

    In reply to: Transition Demo

    Hey!

    Are you referring to the slider in the homepage?
    http://kriesi.at/themes/enfold/

    Best regards,
    Josue

    #279012

    In reply to: Transition Demo

    #278986

    You need to put the debug code after this line (16) in functions.php:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    I couldn’t do it because the file wasn’t writable from the Dashboard.

    Best regards,
    Josue

    #278985

    Topic: Login problems Enfold

    in forum Enfold
    studioriquois
    Participant

    After the latest update of enfold i’m experiencing login problems.

    Anyone the same problems or solution. I already changed my password.

    Arno Smit

    #278983
    tiredagent
    Participant

    I’ve not run into this one before.

    Enfold/General Styling/General – background color changes have no effect. Should appear to be #222222

    Enfold/General Styling/Header – the header background color should be red but it shows white. I’ve tried changing all kinds of things and saving. I tried different browsers and get the same result. It’s simply not working for me.

    FYI in the General Styling demo pane does work.

Viewing 30 results - 218,761 through 218,790 (of 243,737 total)