Viewing 30 results - 239,401 through 239,430 (of 243,976 total)
  • Author
    Search Results
  • Hi Ismael,

    I must be doing something not right. I followed your instructions and found out it is “portfoliobox-2”, added it to the quick CSS field but the date and time is still showing up in the area. Please check out the page, http://acutta.com/template/?post_type=product.

    What did I do wrong?

    Thanks,

    #139088

    Hey,

    Did you recently update to WordPress 3.6? Please download the latest version of the theme, Enfold 2.0.1. Update your installation. If you have a cache plugin, please flush the settings. Remove browser cache then reload the page.

    Regards,

    Ismael

    Hi,

    @yukanl: If you’re using Chrome, right click on the portfolio box widget then click “Inspect Element”. Look for this line:

    <div id="portfoliobox-2" class="widget clearfix newsbox">

    You can use this to remove the date and time:

    #portfoliobox-2 .news-time {
    display: none !important;
    }

    The widget id (#portfoliobox-2) might be different in yours. Please remove browser cache then reload the page a few times.

    Cheers,

    Ismael

    #139200

    Hi jguerrero01,

    As of Enfold 2.0 you shouldn’t need to modify the functions file to get the child theme style coming at the end. I just did a quick test of it creating a new child theme on my live install and it properly spits out the child theme style.css last.

    Changing the order of wp_register_style doesn’t change the output order. That is determined by the wp_enqueue_style which has the if statement at the end now.

    Regards,

    Devin

    #28938
    jackyking
    Participant

    Hi,

    How can I change the font color of the “IN CASE YOU NEED HELP” text of this page, http://kriesi.at/themes/enfold/pages/help/.

    I use the same theme color but only get the font in black which looks ugly with the background. However, I don’t see a way to change the color with the editor as there is no such a selection there.

    Thanks,

    #28934
    jguerrero01
    Participant

    This thread was the closest I saw: https://kriesi.at/support/topic/issue-with-child-theme

    But, my enfold functions.php code seems to be slightly different.

    //register styles

    wp_register_style( 'avia-style' , $child_theme_url."/style.css", array(), '1', 'screen' ); //register default style.css file. only include in childthemes. has no purpose in main theme
    wp_register_style( 'avia-grid' , $template_url."/css/grid.css", array(), '1', 'screen' );
    wp_register_style( 'avia-base' , $template_url."/css/base.css", array(), '1', 'screen' );
    wp_register_style( 'avia-layout', $template_url."/css/layout.css", array(), '1', 'screen' );
    wp_register_style( 'avia-scs', $template_url."/css/shortcodes.css", array(), '1', 'screen' );
    wp_register_style( 'avia-custom', $template_url."/css/custom.css", array(), '1', 'screen' );
    wp_register_style( 'avia-prettyP', $template_url."/js/prettyPhoto/css/prettyPhoto.css", array(), '1', 'screen' );
    wp_register_style( 'avia-media' , $template_url."/js/mediaelement/skin-1/mediaelementplayer.css", array(), '1', 'screen' );

    //register styles

    wp_enqueue_style( 'avia-grid');
    wp_enqueue_style( 'avia-base');
    wp_enqueue_style( 'avia-layout');
    wp_enqueue_style( 'avia-scs');
    wp_enqueue_style( 'avia-prettyP');
    wp_enqueue_style( 'avia-media');

    Which I changed, as an educated guess to:

    //register styles

    wp_register_style( 'avia-grid' , $template_url."/css/grid.css", array(), '1', 'screen' );
    wp_register_style( 'avia-base' , $template_url."/css/base.css", array(), '1', 'screen' );
    wp_register_style( 'avia-layout', $template_url."/css/layout.css", array(), '1', 'screen' );
    wp_register_style( 'avia-scs', $template_url."/css/shortcodes.css", array(), '1', 'screen' );
    wp_register_style( 'avia-custom', $template_url."/css/custom.css", array(), '1', 'screen' );
    wp_register_style( 'avia-prettyP', $template_url."/js/prettyPhoto/css/prettyPhoto.css", array(), '1', 'screen' );
    wp_register_style( 'avia-media' , $template_url."/js/mediaelement/skin-1/mediaelementplayer.css", array(), '1', 'screen' );
    wp_register_style( 'avia-style' , $child_theme_url."/style.css", array(), '1', 'screen' ); //register default style.css file. only include in childthemes. has no purpose in main theme

    //register styles

    wp_enqueue_style( 'avia-grid');
    wp_enqueue_style( 'avia-base');
    wp_enqueue_style( 'avia-layout');
    wp_enqueue_style( 'avia-scs');
    wp_enqueue_style( 'avia-prettyP');
    wp_enqueue_style( 'avia-media');

    Is this effectively the same thing? Just needing to change the order in which the child theme is called? I can’t wait to get rid of all the !important tags.

    Thanks and great theme!

    #28933
    itchybrain
    Participant

    Gday Kriesi forum

    Some of my shortcodes are not rendering, instead are leaving the shortcode visible in the browser.

    I thought it may be due to running WordPress 3.5.2 so I upgraded to 3.6 but still persists.

    I am running WordPress 3.6 and Enfold 2. I reverted to an earlier version of Enfold but the problem still persisted.

    I disabled all plugins but still the same.

    Any ideas what may be causing this?

    Captions: http://www.birdsnest.com.au/blog/take-me-to-the-water/

    Video: http://www.birdsnest.com.au/blog/that-bird-label-video-sing-your-song/

    Thanks for any help you can provide me.

    cheers

    Darryl

    fantastic thank you… and u can set that wood image to anything right?

    #28928
    InfinityJane2013
    Participant

    Finally i succeed with danish language, but when i tried this (i read in another thread in here), it cam up with something i do not understand

    http://wordpress.org/plugins/codestyling-localization/ to translate the theme 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).

    i did the above – and it says:

    Warning: The actual loaded translation content contains mixed textdomains and is not pure translateable within one textdomain.

    It seems, that there is code contained extracted out of other plugins, themes or widgets and used by copy & paste inside some source files.

    The affected unknown textdomains are: wordpress-importer, woothemes, woocommerce, plugindomain, envato, avia_builder, LayerSlider

    What does that mean? :)

    I added this to the quick CSS field but it did not help.

    .news-time {

    display: none;

    }

    I still see date and time displayed in the portfolio list.

    maybe I should try to find the portfoliobox id?

    #114984

    Thank you for the fast reply, but its already set do danish… i run with an danish WP… I looked and it already is set to da_DK in the config

    #139168

    Hi,

    Are you using the latest version of Enfold?

    Regards,

    Josue

    #28926
    CooperDevon
    Participant

    Since a few days, i getting this error constantly showing up in my error log:

    [Wed Sep 04 00:46:25 2013] [warn] [client 47.64.203.36] mod_fcgid: stderr: PHP Warning: simplexml_load_string(): Entity: line 948: parser error : Premature end of data in tag meta line 16 in /var/www/vhosts/xxxxxxx/httpdocs/wp-content/themes/enfold/framework/php/class-framework-widgets.php on line 651, referer: http://www.xxxxxx.de/

    Has this something to do with, that my COMBO Widget isnt working anymore?

    how can i fix this?

    Hi Devin,

    Where can I find this portfoliobox id?

    Thanks,

    Hi jaz,

    Do you mean like this? http://kriesi.at/themes/enfold/?skin=Boxed%20Wood ?

    If yes, you can set that using the themes styling options. Select the Boxed wood skin for an example of all of the settings to get the same kind of effect.

    Regards,

    Devin

    #28881
    headbentdesign
    Participant

    Hello,

    My site (Enfold Theme) is having some pretty significant issues when viewed in Safari 6.0.5 (Mac) browser. Looks great in Firefox and Chrome. But the main menu is behaving oddly, as well has hovering over images in my portfolio, etc.

    Any ideas guys? This could be really bad, considering my client will use his iPhone to view the site a lot.

    Love the theme. Main kink so far.

    Thanks,

    Pat

    #114983

    Hi,

    In your WordPress installation you should open wp-config.php file and find

    define('WPLANG', '');

    and change it to

    define('WPLANG', 'da_DK');

    If you have more questions, please start a new topic and ask there

    Regards,

    Yigit

    jazbird
    Participant

    hi, i presume i may have picked the wrong theme here but can you set the site to have a fixed width with a full background image?

    if not with this theme do you have another?

    thanks

    jaz

    #114982

    Hi – as i wrote ealier i am translating the theme to Danish… I read that another one already did that, but i dont find it here to download, so i must do it myself.

    Anyway – i cant get it to work?

    I took the .po file from the theme, enfold, lang – folder – and i put it there again under the name: da_DK.po / .mo

    But nothing happens on the page

    What do i need to do more?

    Hey!

    I was referencing the ThemeForest listing page: http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990

    There is built in support for Gravity Forms, WooCommerce, bbPress and WPML.

    Best regards,
    Peter

    #138272

    Hi,

    In your WordPress installation please go to Enfold and open Footer.php file and find this code in line 165

    and change it to

    some CSS adjustments may be needed after it

    Regards,

    Yigit

    #139136

    Hi,

    In your WordPress installation please go to Wp-content > Plugins > WooCommerce > Templates and open Content-product.php file and find following code in line between 56-63

    <?php
    /**
    * woocommerce_after_shop_loop_item_title hook
    *
    * @hooked woocommerce_template_loop_price - 10
    */
    do_action( 'woocommerce_after_shop_loop_item_title' );
    ?>

    and comment it out, just in case you would like to display prices in future

    		<!-- <?php
    /**
    * woocommerce_after_shop_loop_item_title hook
    *
    * @hooked woocommerce_template_loop_price - 10
    */
    do_action( 'woocommerce_after_shop_loop_item_title' );
    ?> -->

    Then add this code to Quick CSS in Enfold theme options

    .products .product h3 { padding-bottom: 10px; }

    Regards,

    Yigit

    #114828

    Would love to see option Icon List settings to make the icons: 1). clickable links, and 2). any color you choose (i.e., blue for twitter).

    #139143

    Hi sorry,

    http://logopedievenhuizen.groeier.nl/

    mega menu under ‘logopedie’

    Cheers

    #139142

    Hi,

    Can you post the link to your website please?

    Regards,

    Josue

    Thanks for the quick reply Yigit. The code works great! :-)

    #28920
    MENS
    Participant

    Hi,

    How can i create 7 columns in the mega menu? The seventh column ‘taal’ is put beneath the rest…

    See picture:

    http://www.groeier.nl/7columnmega

    Cheers,

    Herrbirk

    #138401

    Hi hotspot,

    No, that is not included in Enfold right now. You can use the shortcodes provided or you could just include a widget area into your page layout using the sidebar element in the advanced layout editor and include the widget into a custom sidebar only displayed in that specific sidebar/widget area.

    Regards,

    Devin

    Hi,

    In your WordPress installaion please go to Enfold > Framework > Php and open Class-framework-widgets.php file and find following code in line 397

    $time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_newsbox' );

    and change it to

    $time_format = apply_filters( 'avia_widget_time', get_option('date_format'), 'avia_newsbox' );

    Regards,

    Yigit

    #138739

    Hi Ismael,

    I have updates to 3.6 (it was 3.5.2) and i have enfold 2.0.1

    But issue not fixed.

    You can see here : http://sexshop-rodos.gr/%CF%80%CF%81%CE%BF%CF%83%CF%86%CE%BF%CF%81%CE%B5%CF%83/

    I guess its because of Greek characters.

    regards

    Mario

Viewing 30 results - 239,401 through 239,430 (of 243,976 total)