Viewing 30 results - 10,951 through 10,980 (of 11,218 total)
  • Author
    Search Results
  • #140870

    Hi,

    1) Please elaborate – I don’t understand the question. If you refer to the fact that Enfold doesn’t use the styling settings you made on the WooCommerce option page you’re right – Enfold uses its own style settings (Enfold > Styling) and doesn’t take care of the WooCommerce colors, etc.

    2) Yes you can remove the “Add to cart” button. Open up /wp-content/themes/enfold/config-woocommerce/config.php and delete following code

    ob_start();
    woocommerce_template_loop_add_to_cart();
    $output = ob_get_clean();

    if(!empty($output))
    {
    $pos = strpos($output, ">");

    if ($pos !== false) {
    $output = substr_replace($output,"><span class='avia-font-entypo-fontello'>". $avia_config['font_icons']['cart'] ."</span> ", $pos , strlen(1));
    }
    }

    if($product->product_type == 'variable' && empty($output))
    {
    $output = "<a class='add_to_cart_button button product_type_variable' href='".get_permalink($product->id)."'><span class='avia-font-entypo-fontello'>". $avia_config['font_icons']['details'] ."</span> ".__('Select options','avia_framework')."</a>";
    }

    #141046

    In reply to: Video – Enfold

    Hi comitzuu,

    There have been hundreds of suggestions and feature requests for the theme and as always we never guarantee that any suggestion or feature request will be included or when.

    1) This is somewhat difficult and needs to be done custom for the specific image/link depending on how you are adding it in. If you can link to the page we can try and assist as best we can.

    2) The prettyPhoto close button is in the top right.

    3) I’m not sure what you mean. The theme has support directly for video using the Video element/shortcode in the advanced layout editor and with the lightbox plugin (prettyphoto) but as of right now there is nothing else in place.

    Videos on your frontpage are controlled by you and how you add them to your layout.

    Regards,

    Devin

    mailworm
    Participant

    I have an massive issue with editing blog posts. I have to redesign some existing posts, as I switched to Enfold and want to use all the beautiful shortcodes.

    BUT:

    Lets say I have an text in blog post edit view (visuell mode):

    I set the cursor to a certain position, to insert some shortcode.

    I click “insert shortcode” button and choose for example “content elements” > “icon box”.

    I edit the icon box contents, click save.

    1.) After clicking “save” the modal dialogue does not disappear, I need to push the “x” to close it.

    2.) All other content is beeing replaced!!!

    This is an massive issue. I can’t go ahead using copy and paste and rearranging it this way.

    Please help!

    WordPress: 3.6.1

    Enfold: latest

    OS: Mac OSX latest

    Browser: Firefox latest

    #140792

    In reply to: Button label

    Hey,

    What version of Enfold do you have right now? Please download Enfold 2.1. Make sure you’re using WordPress 3.6.

    Regards,

    Ismael

    #140006

    Hi,

    In your WordPress theme directory please go to Enfold folder and open Header.php and find following code in line 171

    do_action('ava_after_main_menu');
    ?>

    and right under it paste your code like

    <?php echo "<iframe class='facebk' src='....'></iframe>"; ?>

    do not forget to change all ” to ‘ inside your iframe code. You can use iframe.facebk class to style your button

    Regards,

    Yigit

    #29520
    xpoveda
    Participant

    Hello,

    http://dev.escalamas.com/tienda

    I do not this taking the styles that I have defined in WooCommerce, this taking me to enfold themselves. How to make the catch?

    Also would want to have all products in view only “catalog”, ie could not buy. As do so only out for each product the button “show details”?

    Thank you!

    Xavier.

    #140561

    Hi,

    no afaik this is not possible because Kriesi uses overflow:hidden to avoid any flickering or styling issues and thus all elements which are positioned outside the slider will also be hidden. I’d suggest to use the fullwidth layerslider ( http://kriesi.at/themes/enfold/ ) or the fullwidth easy slider if you want to place the controls on the left/right side of the screen.

    #114845

    1) WPML related feature:

    If WPML is used with Enfold, add option to avia, to import/ copy avia options from one language to another. This would be a massive time saver, as usually corporate design counts and is the same (colors, fonts, logos, favicon, etc) no matter the language.

    2) Add option field to

    – upload icon for mobile devices home button.

    – set title for mobile devices home button.

    For details on icon suggestion see http://www.kylejlarson.com/blog/2012/adding-an-icon-for-iphone-ipad-android-to-your-website/

    #29452
    cdapex
    Participant

    As the title says, I deleted my Enfold theme…..well as dumb as it sounds, it wasn’t the activated Enfold theme, but one of the 6-9 of them that were showing in my Themes in WP. When I did this it deleted all the Enfold themes, which I had feared when I hit the ok button.

    Anyhow, my server provider had a backup as of 9/9/13 so they wiped the server, and restored their backup. Only prob now the Header & Footer are fubar. The Header is showing all pages of the site, even though the menu is all good. The footer is showing all pages of the site and basically ignoring anything I had setup ages ago. When I checked the Widgets, nothing shows in any of the 4 columns, which I can obviously do over, but is there a way to get everything back functioning correctly?

    I’ve nearly shat my pants 10 times today over a 10+hr ordeal….at the same time I’ll be very happy to pay one of the mods….Ismael you out there bro?….to just fix this to get my site back up. It’s 10:30pm Beijing (GMT+8) time, and as much as I enjoy doing all of this myself, it would be great to have some serious help. URL is http://obutto.com

    Hope to hear from you guys soon, thanks very much!

    Best regards,

    Chris

    #140080

    The difference is that the image sliders and the post sliders do not support custom content. The image slider can just display images with captions, the post slider can display posts. The content slider allows you to slide any text or content (including shortcodes) – many users requested this feature and thus we decided to implement it.

    2) No, you can’t hide the space by default. If you want to hide it open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodescontentslider.php and replace

    $output .= "<div class='avia-smallarrow-slider-heading'>";
    $output .= "<div class='new-special-heading'>".$heading."</div>";

    with

    $heading_class = '';
    if($navigation == 'no') $heading_class .= ' no-content-slider-navigation ';
    if($heading == '&nbsp;') $heading_class .= ' no-content-slider-heading ';

    $output .= "<div class='avia-smallarrow-slider-heading $heading_class'>";
    $output .= "<div class='new-special-heading'>".$heading."</div>";

    The use following css code to hide the space if no title & control buttons are set

    .no-content-slider-navigation.no-content-slider-heading{
    display: none;
    }

    #29113

    Topic: varied problems

    in forum Enfold
    astroboy1970
    Participant

    Hi,

    We have some problems:

    You can see a Screenshot on http://www.streambox.pe/screen1.jpg

    1) I created 2 pages: HOME and CONTACTS but, I see 2 buttons for HOME..why?

    2) the border line touch letter S on contacts button.

    3) I don’t like the link “Enfold Theme by Kriesi” at the end of the page. How can I remove this?.

    4) How can I edit the footer to put information?, example some images or links .

    5) There are some words on wordpress like ” CATEGORIES”..how can I change this word (I need spanish)

    6) I have my page on blog.streambox.pe when I see it on my android cel and rotate the screen 90 degrees, the slider shows the previous width.

    Thanks,

    #29387
    xpoveda
    Participant

    Hi, I’m proving enfold integration with woocomerce and I have some questions.

    http://dev.escalamas.com/tienda

    1) http://imageshack.com/scaled/large/545/571s.png

    When step above all WooCommerce blue buttons becomes smaller.

    1.1) Would want to just change ONLY “on hover” color (same your web enfold at kriesi.at).

    1.2) In some of them buttons there is no effect “hover” (“Update cart” for example).

    I like to add style to produce the same effect in all blue woocommerce buttons.

    1.3) Which css for modify color and size button?

    2) http://imageshack.com/scaled/large/819/hvkk.png

    If I click on the logo and then go to the cart, the text is large. But it is small. How to always be small?

    Thank you!

    Xavier.

    #29367

    Topic: WPML Breaks all URL's

    in forum Enfold
    matsch
    Participant

    Hi,

    Enfold is great obviously! Really easy to use and create layouts. I have installed WPML and am trying to have the site in 3 languages. But when the plugin is active, all my URL’s break. All links in the navigation, page links, buttons…everything except the homepage!

    Seems quite drastic and as if I am missing something pretty fundamental. Any ideas?

    Thanks

    jackyking
    Participant

    Sorry that I am opening a new topic. I forgot to ask before closing the last one related to the login/register links.

    I understood that ENFOLD comes with lightbox feature. My question is, how can I add a pop-up form to the login link that was added to the top navigation bar? Do I need to make the link a button or image before I can add a pop-up form to it?

    Thanks in advance!

    #139662

    Hi,

    In your WordPress directory please go to Enfold > Config-templatebuilder > Avia-shortcodes and open Postslider.php file and find following code in line 321

    $output .= "<div class='slide-content'>";

    and add your code right under it

    $output .= " your code here ";

    But please not that you should use ‘ instead of ” inside your iframe tag so your code should be like height=’20’ and not like height=”20″

    On Localhost it did not work for me but Facebook like button for pages worked fine, so i guess you will not have a problem as long as your code is fine :) Feel free to let us know if does not work

    Regards,

    Yigit

    discosourcedjs
    Participant

    Hi.

    I have just finished my Enfold Theme website and some things are not working. I will post a each problem in a different thread.

    First problem is that when in WordPress I click to edit a page or post, the Advanced Layout Editor’ is not visable. Here is a screenshot of what I get.

    http://www.mobile-dj-hire.com.au/wp-content/uploads/2013/09/advanced-layout-editor.png

    It’s just not there. If I click that button you can see which says ‘Default Editor’ then it changes the screen to the normal WordPress Editor and the button changes and then say ‘Advanced Layout Editor’, when I click that button, it reverts to that screenshot and says ‘Default Editor’.

    Please help! I need to fix my broken links ASAP!

    #139827

    Please use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to translat the plugin.

    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). If you still can’t find the text strings in the generated po file you can use the title filter to change the text. Add following code at the bottom of functions.php

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if ( $args['title'] == 'Blog - Latest News' )
    {
    $args['title'] = 'MY TEXT';
    }

    return $args;
    }

    and instead of MY TEXT insert your translation.

    The other text strings you mentioned ( “Logged in as… Log out?” “Post comment” , etc.) are not part of the theme code and you can’t translate them with the theme po/mo files. You maybe need to update the translation of wordpress ( http://codex.wordpress.org/WordPress_in_Your_Language ) or a plugin adds these text strings to the website – then you must translate the plugin.

    #139655

    Hi,

    You can try adding this code to custom.css file or to Quick CSS section in Enfold theme options page under Styling

    div.slide-content { padding: 10px; }

    div.slide-entry { box-shadow: 0 0 8px #888888; }

    .avia-content-slider .slide-entry-wrap { width: 98%; left: 1%; }

    Regards,

    Yigit

    #139780

    Hi,

    You can add following code to custom.css file or into Quick CSS section in Enfold theme options page under Styling to make large button even larger

    .avia-button.avia-size-large { padding: 30px 80px; }

    You can increase the value to make button larger

    Regards,

    Yigit

    #139693

    Hi Arne,

    Please try adding following code to custom.css file or to Quick CSS in Enfold theme options page under Styling

    #header .avia-button-wrap.avia-button-right { left: -11.8%; }

    Regards,

    Yigit

    #29049
    Btina
    Participant

    Hi,

    For some reason my Navigationpoint does not work. I created a Page named Kontakt and set that up in the Settings under Menü. I creaded a Menü for Enfold Main Menu and saved that. And build a Navigationpoint for just the Kontakt Page – that means I’d like to have just one button in the Navigation. I also set the static page in the Settings, but anyway…. if I go back to my website click on the botton I creaded for the Navigation it does just realode the Mainpage. I never had that bevor I just have no clue why that could be … this is really strange to me! Any idea why this could happen?

    Please have a look

    http://www.diefarben.com

    Password: Enfold_2013

    Thank you

    Btina

    #139138

    You can find it in wp-contentthemesenfoldconfig-woocommerceconfig.php – search for

    if($product->product_type == 'variable' && empty($output))
    {
    $output = "<a class='add_to_cart_button button product_type_variable' href='".get_permalink($product->id)."'><span class='avia-font-entypo-fontello'>". $avia_config['font_icons']['details'] ."</span> ".__('Select options','avia_framework')."</a>";
    }

    if($product->product_type == 'simple')
    {
    $output .= "<a class='button show_details_button' href='".get_permalink($product->id)."'><span class='avia-font-entypo-fontello'>". $avia_config['font_icons']['details'] ."</span> ".__('Show Details','avia_framework')."</a>";
    }

    You need to replace avia-font-entypo-fontello span with an image or another font icon if you want to change the look of the icons.

    #28946
    Btina
    Participant

    Hi

    Does anybody know how to change the color of the strange arrow sign – that one when you scoll over the preview image of the portfolio you can see a round sign with a arrow in it. Where can I set the color of that?

    Have a look at my Website http://www.diefarben.com Password: Enfold_2013

    Thank you!

    Btina

    #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? :)

    #138747

    Alright I resolved some of the issues myself searching around and trying things, the last thing I need to resolve with the toggles is the color of the little “plus sign” button (active, inactive, and hover states) and the toggle’s borders (all 3 states as well). I want the plus sign button to be white and the borders to remain color #404852.

    thanks for all the help so far!

    josh

    #138704

    Thank you very much. I will try that.

    #28829
    tinagianna
    Participant

    Hi Kriesi Team!

    First of all I would like to say a big thankyou for this brilliant theme (Enfold). I have bragged about it to a few friends.

    I have almost finished my site and I just have two things I want to fix, and I cant seem to find an answer on our Forum.

    1. When a visitor is logged into my site… they can click on this icon found on the logout button and it will lead them to the forums/user page. How can I change the URL link so it leads them to ‘My Account’?

    I have attached an image so you can see what I mean – http://s24.postimg.org/s6wg8c51h/PIC1.png

    If I cant do this can I at least remove/disable this icon all together? (My site does not consist of a forum, and I really want to remove this feature)

    2. Last question… when a visitor has an empty cart they are shown a button saying ‘return to shop’.

    Woo Commerce has made this button take you to the Shop Page. (My shop page looks hideous by the way…)

    Is there a way I can redirect visitors from that page to the another store page I have created? (a pretty one of course)

    http://s23.postimg.org/qqtnycpob/PIC2.png

    Thats all folks!… and thankyou! :)

    #138703

    Hi,

    You can use this plugin and set it to only have 2 options:

    Regards,

    Josue

    #138684

    Hi Tom,

    You’re welcome, glad we could help :)

    Regards,

    Yigit

    #138683

    Oh Yigit …

    We Germans have a saying: “The one who is able to read, always has the benefit” … :-)

    I’ve looked everywhere in the theme – but haven’t seen the “custom color” setting in the promo box … :-)

    Both solutions worked perfectly !!!

    Thanks again !

    Tom

Viewing 30 results - 10,951 through 10,980 (of 11,218 total)