Viewing 30 results - 217,891 through 217,920 (of 243,298 total)
  • Author
    Search Results
  • #282375
    omnyss
    Participant

    Dear all,

    our blog is running with WP 3.9.1 and enfold 2.8.1. with child theme. Since the last theme update (to 2.8.1), we face the problem, that no fontello icon will be shown correct in Firefox (V29.0.1) and IE (V11.0.9). IE shows even japanese characters. :-) Chrome and Opera: no problem.

    We studied other threads here, but no suggested solution solved the problem.

    Any idea?

    Best regards.
    omnyss

    #282374

    Hi Sophieja23!

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

    .main_color .sidebar a { color: red; }

    Regards,
    Yigit

    #282362

    In reply to: Footer Link

    Hi!

    Changes are done. Please review your website. You can find custom CSS code i added in Quick CSS field in Enfold theme options under Styling tab.
    P.S.: You are using an older version of the theme. At some point you are going to need to update it to the latest version 2.8.1, for instructions, please see – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Yigit

    #282345

    Hi, nothing im getting this error:
    Parse error: syntax error, unexpected ‘post’ (T_STRING) in /home/content/p3nexnas06_data01/69/2066769/html/wp-content/themes/enfold/includes/loop-index.php on line 23

    This is how the loop-index.php file looks now

    EDITED

    #282344

    Hi nuanda74!

    Thank you for using the theme!

    Unfortunately, you can’t set a predefined color scheme on different pages but you can modify specific pages using the Enfold > General Styling > Quick CSS field or use the wp-content/themes/enfold/css/custom.css file. Firebug or any other browser code inspector will come in handy when making these changes. Also, try to play around with the advance layout builder and the avia elements especially the color section if you want different color schemes for different pages.

    In case you have any questions, please take some time to 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. :)

    Regards,
    Ismael

    Hey VictoriousC!

    If you want to change the title of the events page this post: https://kriesi.at/support/topic/enfold-and-the-event-calendar-plugin/#post-174332 will help you.

    Best regards,
    Peter

    Hey curmi01!

    I suggest to add the html code/links to the copyright field: Enfold > Theme Options > Footer Layout
    A sample code snippet for links can be found here: http://www.w3schools.com/tags/att_a_href.asp

    Best regards,
    Peter

    #282299

    Hey luoja!

    1) You can change the color with css code – insert it into the quick css field:

    
    #top .alternate_color .av_promobox{
    background: #fff;
    }
    

    2) You can use the magazine element: https://www.clipular.com/c/5059415027744768.png?k=txZCYIFWj6SAWun0ojlbjhmbqDQ to add a magazine to your page template. If you can’t find this element please update Enfold to the latest version. To make the header transparent use the layout options on the editor screen: https://www.clipular.com/c/4758578539790336.png?k=HyEjJDxM-W6j7lmy9CU9KgQDDlo

    Regards,
    Peter

    #282298

    Hey!

    You can try to trigger resize event on page load – use this code:

    
    add_action('wp_head','avia_print_script', 10);
    function avia_print_script()
    {
        if(! is_page(2980)) return;
        echo "<script>";
        echo "setTimeout(function(){ jQuery(window).trigger('resize'); },100);";
        echo "</script>";
    }
    

    or

    
    add_action('wp_head','avia_print_script', 10);
    function avia_print_script()
    {
        if(! is_page(2980)) return;
        echo "<script>";
        echo "setTimeout(function(){ window.dispatchEvent(new Event('resize')); },100);";
        echo "</script>";
    }
    

    and insert it into the enfold/functions.php file or your child theme functions.php. Note that you might need to change the page id (2980) if you move the masonry gallery to another page.

    Best regards,
    Peter

    #282295

    Hey!

    This is not possible at the moment and would require some customization work. You can suggest the “pre-selected filter” feature here: https://kriesi.at/support/enfold-feature-requests/ though.

    Best regards,
    Peter

    crschulz
    Participant

    I have used both

    .blog div.big-preview.single-big { display: none !important;}
    and
    .small-preview, .big-preview.single-big { display: none;}
    to remove preview images and I’ve used

    .post_author_timeline {display: none !important;}
    and
    .blog-tags, .blog-categories, .blog-author {display: none !important;}
    to remove the timeline and the tag/categories/author meta

    I want to streamline the Single Author Blog Posts element.

    However, these CSS do not work in mobile. The images/tags/categories/author and timeline all show up on mobile devices for the Single Author Blog Posts elements.

    What additional CSS do I need to enter to remove them from mobile.

    Thanks, Chad

    Hey!

    Please try to place the video into the color section, then add a custom id to the section ( http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png ) – i.e. “fullwidth_video_section”. Then insert this code into the quick css field to stretch the video

    
    #fullwidth_video_section .container, fullwidth_video_section iframe{
    width: 100%;
    }
    

    and replace “fullwidth_video_section” with your custom id if necessary.

    Best regards,
    Peter

    #282286

    Hey!

    1) There’s no setting for the sidebar/content width. You can use the code Ismael posted here: https://kriesi.at/support/topic/creating-and-using-a-different-sidebar/#post-282111 to change the sidebar width. If you want to change it again you need to edit the code. You can place the code into the functions.php file (child theme functions.php or enfold/functions.php).

    2)

    
    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 of the sidebar. Note that you must not exceed the width of “twelve” units because our css grid just supports twelve units in one row. If you want to change the sidebar size for a certain post type only add a post type check to the function like:

    
    function avia_increase_sidebar_size() {
    	global $avia_config;
    	if(get_post_type() != "mycpt") return;
    
    	$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);
    

    and replace “mycpt” with your post type.

    3) By default Enfold supports the layout options only for posts and pages because you must create a custom template (i.e. based on page.php and loop-page.php or single.php and loop-index.php) to use the layouts with another post type. Then you can use this code:

    
    add_filter('avf_builder_boxes','custom_post_types_options');
    function custom_post_types_options($boxes)
    {
    	$boxes[1]['page'][] = 'mycpt';
    	return $boxes;
    }
    

    to add the layout options to the cpt editor screen. Probably these options won’t work properly if you do not use a cpt template based on page.php and loop-page.php or single.php and loop-index.php…

    Regards,
    Peter

    #282282

    Hey!

    Yes, I’m pretty sure qtranslate does not fully work with Enfold. We decided to support WPML only (at least for now) because it’s a premium plugin with a support and developer team behind it.

    Regards,
    Peter

    #282279

    Hey!

    Glad we are able to help. In case you have any questions, please take some time to 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. :)

    Regards,
    Ismael

    #282233

    There was an update notice on Enfold to upgrade to, I think 3.9? That appears to be what’s causing all the grief. After the “upgrade” my LayerSliders were virtually destroyed. There was some text, but no images. It was a mess. Someone sent me custom CSS about images and, although I questioned why I didn’t need it before, I added it anyway. The LayerSliders now had images again but now my slider at the top of my homepage is all screwed up. The image height is wrong. The font is wrong. The text placement is wrong. All this and I didn’t tough a thing.

    #282229
    luoja
    Participant

    Hi,

    we are wondering how to do that white background to the box in the middle of the gray background? For example Home v2 box that is starting with text: Enfold is freakish…
    How we can do pages that are called magazine and transparent in your template (Home v10:Magazine and Home v11: Transparent menu.
    Thanks for your help.

    #282220

    In reply to: Pricing table color

    Hi!

    Thanks, hope you are well as well :)
    Please firstly turn on custom CSS field for Advanced Layout Builder elements. Please see – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    Then give different custom classes to your pricing tables and add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .custom-class-one .avia-heading-row, .custom-class-one .avia-pricing-row { background: red !important; border-color: orange !important; color: green !important; }
    
    .custom-class-two .avia-heading-row, .custom-class-two .avia-pricing-row { background: red !important; border-color: orange !important; color: green !important; }

    Cheers!
    Yigit

    #282216

    Hey!

    Yes, that is what i meant and now it does work fine. Please add following code to Quick CSS in Enfold theme options under General Styling tab

    ul.deposit_options {
    list-style: none!important;
    }
    li#deposit-option-full input, input#pay-deposit {
    float: left;
    }
    tr#due-later, tr#due-today {
    display: none!important;
    }

    Regards,
    Yigit

    mareva
    Participant

    Hi,
    I tried to modify Enfold css in order to change the solid border of the sidebar into a dotted one. (to be true, I’ve changed it quite everyhere, but the issue only comes with the sidebar).
    In my child theme :
    .content {
    border-right-style: dotted;
    border-right-width: 1px;
    }
    #top #main .sidebar {
    border-left-style: dotted;
    border-left-width: 1px;
    }
    Display is correct with Chrome, but not with Firefox 30, neither with IE 11 (but it is not so visible on IE).
    I think there is one pixel gap between the sidebar border and the main page area one, but I don’t know how to fix it.
    This does not appear in all pages of my site: sometimes, it looks fine but if I change only one sign, then the gap appears.
    You can have a look on :
    – Example with a bad display : http://www.ticettac.net/wp_eloise/blog/
    – Example with a fine display : http://www.ticettac.net/wp_eloise/navire/

    Is there anything I should do to solve it?

    Best regards
    m.

    #282209

    There is nothing wrong with the server or the other website. As I mention before the other website is working fine with gravity forms and the other website where I am using enfold theme is not working with either form. I deactivate the wp SMTP plugin and still non of the forms are sending emails. I test different email accounts and nothing. What else could be causing the problem?

    Thanks,
    Guido

    #282208

    In reply to: Pricing table color

    Hi there,
    hope you are well.
    First of all great job on the enfold theme. I am an absolute wordpress beginner and it made my life very easy to create a website for my new company. However I do have a question about the pricing table.
    I have three pricing columns and would like the pricing rows to be different colour (silver, gold, bronze)
    here’s the website: http://www.tacticalproductions.at/highspeed/pages/pricing/

    How would I go about this?

    Thank you. Cheers

    #282199

    Hi!

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

    .home .content {
    padding-top: 5px;
    }

    Regards,
    Yigit

    #282195

    Hey nicostudio!

    Please update Enfold to the latest version 2.8.1 via FTP – http://vimeo.com/67209750
    then flush browser cache few times. Let us know if issue remains

    Regards,
    Yigit

    #282188

    In reply to: Blog

    Hey Jon!

    Select this setting here (Enfold > Blog Options):

    And build your blog page with the Template Builder like this:

    Cheers!
    Josue

    #282178

    Thank you for the response…

    The only function pages I see in my editor are the
    Theme Functions and functions-enfold

    Is one of those the “child” theme?

    and do I just insert it anywhere???

    I am not super familiar with coding php like that….which is why I bought a template where I wouldn’t have to do too much :)

    THank you for your help

    TIara

    philip
    Participant

    Hello.
    I bought and installed a deposit plugin from limeplugin. this is used in conjunction with woocommerce so that customer is able to pay e.g. 25% deposit.
    But somehow enfold and this plugin dont work well together from css point of view.

    1. the button to choose between 100% payment and deposit payment is distorted. there are 2 dots
    2. the deposit plugin does its calculation and the calculation details appear below the additional information field. this information should be hidden.

    could you please have a look?
    thanks for checking,
    philip

    #282168

    Hi lflask!

    Within the theme the only thing that would be able to support anything close to that would be the prettyPhoto lightbox script but the whole slideshow with captions would need to be custom coded.

    As an example, the theme pulls together the photos in galleries into a lightbox like on this page when you click on an image: http://kriesi.at/themes/enfold/shortcodes/gallery/

    But you would need to build the code for the link custom into a code element using the demos here: http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/

    The non-code route would be to find a plugin that does what you are looking for instead which there is most likely one that fits your needs out there somewhere.

    Regards,
    Devin

    #282162

    (Sorry for the 2-part Question)

    Also, the Dev Team at WPMU Plugins are asking about the theme’s sidebar functionality. Their question is as follows:

    My question was:
    “I am using the professional theme Enfold and with this theme you can choose whatever sidebar you like in blog posts or page posts.

    You can easily choose Sidebar under Edit Post > Layout > Sidebar Setting. See link below:
    https://www.dropbox.com/s/uzgryvhsdcpgu9n/layout.png

    However with the Fundraiser Post Plugin, the option for Layout is missing entirely. I do not think the theme is the issue, but see link below:
    https://www.dropbox.com/s/fw2k0p8ydgpusrv/campaign%20post.png&#8221;

    Their response and question to you:
    “Does the Enfold theme support custom post types for its layouts? Or is it just for posts and pages? From its product page it doesn’t seem like it supports these. Have you tried it with any other custom post type? (besides WooCommerce products… I believe it supports these). Have you tried contacting the theme developer on this one?? Perhaps their insights would help us resolve this and add support for all custom post types…”

    #282151

    In reply to: Submenu

    Hi Finlando!

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

    #top .av-main-nav ul a { text-align: center; }
    .av-main-nav ul { box-shadow: none; }

    Regards,
    Yigit

Viewing 30 results - 217,891 through 217,920 (of 243,298 total)