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

    Hi scottsmeester!

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

    @media only screen and (max-width: 990px) {
    #header_main div.container {
    margin-top: 50px;
    }
    .html_header_top.html_header_topbar_active.html_header_sticky.html_large #top #main {
    padding-top: 197px;
    }}

    Best regards,
    Yigit

    adrianwackernah
    Participant

    Ich verfolge gerade die Diskussion auf Marketpress.de zum neuen Verbraucherrecht. WGM hat da ein neues Label bei den Produkten eingeführt – Digital –, das wohl bei allen virtuellen und herunterladbaren Produkten erscheinen soll – ähnlich dem SALE Label. Kommt da noch was für Enfold?

    #279374

    Hi mixedmedia99!

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

    .woocommerce .thumbnail_container img {
    width: auto!important;
    }

    Best regards,
    Yigit

    #279372

    Hi mixedmedia99!

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

    #header_main_alternate {
    background: #000099;
    }

    Best regards,
    Yigit

    #279365

    Hi!

    Glad Ismael could help! You can request features or vote already requested ones here – https://kriesi.at/support/enfold-feature-requests/
    Let us know if you have any other questions or issues :)

    Cheers!
    Yigit

    This reply has been marked as private.
    #279362
    mocablue
    Participant

    I went to Enfold > Theme Options > Favicon. Upload my icon image. Website is: http://mq38.com

    should the icon show up instantly? I also manually uploaded an ico format image to the root directory but nothing seems to be working…

    #279356

    Im also using the most updated version of WP and Enfold

    #279341

    Dear Josue,

    Sure. http://www.francaispourlesetrangers.eu/blog
    It is used on the Enfold demo site as well. main menu > features. (then the sidebar menu on the left).
    Do you know how to create a thicker border on the footer as well. If i change it in CSS it will add a thicker border to all the borders on the website.

    Thanks Josue!

    Hi HuxburyQuinn!

    Thank you for visiting the support forum!

    There is no opacity or tint on the sub menu items. Just add this on Quick CSS or custom to change the font color:

    .header_color .main_menu .menu ul li a {
    color: blue;
    }

    You can also modify the menu style on Enfold > Advanced Styling panel. Edit the Main Menu sublevel links element.

    Best regards,
    Ismael

    #279328

    In reply to: errors in code

    Hey!

    Thank you for the info.

    I’m sorry, I thought http://raygun.io is the website. Reviewing the error logs, most of it are coming from wp core theme files and not the Enfold. My guess is that the plugin are quite strict and are looking for high standards on coding practices for PHP. There seems to be no performance issues when I logged in to the wp dashboard. Please try to open a ticket on wordpress.org. I’ll ask Dude to check this thread in order to explain it further.

    Regards,
    Ismael

    ahauber
    Participant

    Hello Team,
    This is to ask you for a recommended free and easy manage newsletter pluging compatible with ENFOLD.
    I see you recommend the WordPress Newsletter Plugin, but it is not free.
    Many tanks and regards from Madrid, Adolfo

    #279318

    In reply to: Advance LayerSlider

    Hey Andrew!

    Thank you for using the theme.

    Did you migrate the website on another domain? The image links are incorrect. In order to migrate the theme successfully and leave the database intact, please use this plugin: WP MigrateDB or WP MigrateDB PRO

    Refer to this link for more info on how to properly migrate your enfold website from production to development vice versa:

    http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
    https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684

    Regards,
    Ismael

    #279305
    paul_dekart
    Participant

    Hi,
    as i has read at google analytics settings, the new Universal Analytics needs analytics.js script to work properly.

    https://support.google.com/analytics/answer/4457764?hl=en

    Currently, Enfold uses old ga.js script. Is there any chance it will be updated?

    Kindly regards,
    Paul

    #279300

    Hi SeascapeTech!

    Maybe Enfold can’t regenerate the dynamic stylesheet for one (or more) languages. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete the enfold.css file inside the dynamic_avia folder. Afterwards go to Enfold > Theme Options to regenerate the dynamic stylesheets (hit the green “Save all changes” button).

    Regards,
    Peter

    #279295

    Hey!

    1) I recommend to use the excerpt field: http://www.clipular.com/c/4541537736196096.png?k=QuY_W21Ghczzv2VdGq9JHU_v1gI to determine the excerpt length. WordPress will display the text you entered in the textarea as excerpt. If you want to generate the excerpt based on the post content use this code:

    
    add_filter('avf_masonry_excerpt_length','avia_change_masonry_excerpt_length', 10, 1);
    function avia_change_masonry_excerpt_length($length)
    {
     return  60;
    }
    
    

    and replace 60 with any custom value. The default value is 60 characters. You can insert the code into the child theme functions.php file or enfold/functions.php.

    2) You can use the “Link” post format. If this format is set and you added an url to the very beginning of the post content Enfold will link the image to this url and not to the single post page: http://www.clipular.com/c/5277255768997888.png?k=0u0Vjl_5_E5ai8QLIq7HMW86120

    Best regards,
    Peter

    #279285

    In reply to: Read more in blog

    Hey!

    The category/archive pages use the read more quicktag ( http://en.support.wordpress.com/splitting-content/more-tag/ ) to separate the excerpt from the content. You can also use the “excerpt” option field on the post editor page to insert a custom excerpt text but you need to add this code to your child theme functions.php file or enfold/functions.php:

    
    add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1);
    function avia_category_content_filter($current_post)
    {
    if(!is_single())
    {
    	$current_post['content'] =  get_the_excerpt();
    	$current_post['content'] .= '<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';
    }
    return $current_post;
    }
    

    to query the excerpt from the “excerpt” field.

    The html code I see on the plog overview is only there when I change the propertie of a blog message to link. If I take away the propertie (notation) link and use standard, there is no problem. But like that I still see the whole message and not only a summery.

    I guess you tested it with: http://gok.wpengine.com/galerij-van-succesverhalen/ (hosted on WPengine) ? The reason is that you wrapped your link into a “quote” tag. If you want to use the “link” post format please add the url of the link without any additional html tags to the top of the post content like:

    
    http://opgewicht.forum2go.nl/galerij-met-inspirerende-grip-op-koolhydraten-succesverhalen-f57.html
    
    <blockquote>Voor inspiratie en motivatie zie de <a title="Galerij van succesverhalen" href="http://opgewicht.forum2go.nl/galerij-met-inspirerende-grip-op-koolhydraten-succesverhalen-f57.html" target="_blank"> <strong>Galerij van succesverhalen</strong></a> op het forum (voor iedereen leesbaar).
    
    Bijvoorbeeld: <strong><a title="Drie generaties aan de GOK" href="http://opgewicht.forum2go.nl/3-generaties-aan-de-gok-t11919.html" target="_blank">Drie generaties aan de GOK</a></strong>
    
    &nbsp;</blockquote>
    

    Enfold will then strip the url http://opgewicht.forum2go.nl/galerij-met-inspirerende-grip-op-koolhydraten-succesverhalen-f57.html from the post content and use it as featured url/link.

    Cheers!
    Peter

    #279282

    Hi!

    is there a solution to change the size of right sidebar???

    Yes, insert this code into the child theme functions.php file or enfold/functions.php:

    
    function avia_increase_sidebar_size() {
    	global $avia_config;
    	
    	$avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    	$avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    	$avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');
    }
    add_action( 'init', 'avia_increase_sidebar_size', 1);
    

    To change the sidebar size you need to replace “eight” and “four” with a different value. I.e. change “eight” to “nine” and “four” to “three” to decrease the width of the sidebar. You can also replace “eight” with “seven” and “four” with “five” to increase the width. Note that you must not exceed the width of “twelve” units because our css grid just supports twelve units in one row.

    Regards,
    Peter

    #279277

    Hey!

    1) Try this code instead:

    
    .single #wrap_all div[itemprop="description"] p{
    font-size: 18px;
    }
    

    2) Please add this code to the child theme functions.php file to hide the additional informartion tab. You can also add it to enfold/functions.php if you don’ use a child theme:

    
    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
     
    function woo_remove_product_tabs( $tabs ) {
        unset( $tabs['additional_information'] );  	// Remove the additional information tab
        return $tabs;
     
    }
    

    Cheers!
    Peter

    #279257
    Pinkclaire
    Participant

    Hi,
    When I re-size my browser window or view web page in mobile, the mobile menu appears. (Great!)
    1-When i scroll down it disappears, what is the code for keeping it at the top right of my screen(aka floating/ sticky/fixed position?)

    I searched the forum for this but i did not find what i’m looking for.
    Thank you for the help!

    2-if i want it to float in the middle of my screen or at the bottom, what is the code?

    examples:
    https://cdn.tutsplus.com/net/uploads/legacy/018_Floating_Menu/demo/dhtml_float_menu_final_nettut.html

    #279253

    In reply to: errors in code

    Hey!

    Thank you for the info.

    Please deactivate all plugins then test it again. Might be in conflict with other plugins. Make sure that you’re running WP 3.9 or higher with Enfold 2.8.1. If deactivating the plugins doesn’t work, please post the login details here and set it as a private reply. We would like to ask for your permission if it’s possible to deactivate the plugins while working on the site.

    Best regards,
    Ismael

    #279246

    Hey Yoav!

    Please update the theme to the latest version (2.8.1).

    You can try putting the code inside a Code Block element, that way it will get preserved.

    Best regards,
    Josue

    #279240

    In reply to: specific box height

    You need to put the code in the theme functions.php:
    /wp-content/themes/enfold/functions.php

    Regards,
    Josue

    HuxburyQuinn
    Participant

    Hi,

    I’ve been playing with the CSS for some time now and I can make the non-active menu-text a solid colour – however the CSS targeting I am using breaks other style.

    Just wondering if there is an easy way to turn off the theme function which makes the navigation text a percentage tint of the main colour

    thanks :)

    #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

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