Viewing 30 results - 239,911 through 239,940 (of 241,700 total)
  • Author
    Search Results
  • #126166

    Hi fdecoene,

    I’m not really sure what you mean. What effect are you looking to duplicate from the demo? Can you link to it so we can get a good reference point?

    Regards,

    Devin

    #125973

    Dear Devin,

    The option of “Feature Image” under screen options was gone. I could revert back to Eunoia and see the feature image option and have the feature image again.

    But I did find the plugin that was interfering in Enfold: SuperSlider-Media-Pop. So it is now deactivated and I can select and edit my Featured image once again.

    Thanks for replying,

    Nick

    #126188

    In reply to: maintenance mode

    Hi,

    Create a page, go to Layout > select No Sidebar. Don’t display the header, footer widgets and socket. Add a Text Block or whatever it is you want to add on your Maintenance Mode page. Publish the page. Go to Enfold > Theme Options > Frontpage Settings, select the maintenance page.

    Regards,

    Ismael

    #125976

    Hi Margarita,

    You can either just add that single file to the child theme (reference for quick how to https://vimeo.com/channels/aviathemes/67221517) or use CSS to remove those items:

    .entry-content .post-meta-infos {
    display: none;
    }

    Regards,

    Devin

    #114948

    Hi pibo5,

    Wow. Thank you so much for this. :)

    Regards,

    Ismael

    #125988

    In reply to: A few questions

    Hi barryocarrollphotography,

    1) If you are using a secondary lightbox plugin, you should just disable it. Otherwise you’ll need to unhook the themes prettyPhoto script from being used throughout the site and I’m not sure anything third party will be able to accurately integrated with all of Enfolds features.

    2) Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    .avia-slideshow-dots.avia-slideshow-controls {
    display: none;
    }
    .avia-slideshow-arrows.avia-slideshow-controls {
    display: none;
    }

    3) Go to the Styling tab of the theme options. Then open the Header tab and change the options there. The “Header font color” controls the menu item static color as well as the hover using a theme function to get a slight difference from the one you pick.

    So you could use the following to set the static color for all those items and then use that option to just set the hover:

    .header_color .main_menu ul:first-child > li > a, #top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a, #top .header_color .sub_menu li ul a { color: #FFF000; }

    Regards,

    Devin

    #125945

    Hi All,

    Can we get a link to your site showing the issue? There could be something causing a conflict that we can pinpoint or help in finding the bug/issue.

    Regards,

    Devin

    I do have all the wordpress admin rights, I’m using the only wordpress user defined, the admin user.

    Everything works fine, except this.

    But I was wondering, since Enfold uses the new advanced layout builder, is there still a notion of Dynamic Templates editable separately from the page? In other words, should this menu item even be there?

    [Sorry if this sounds confused, it just reflects my own confusion right now.]

    Thanks

    #125816

    In reply to: Enfold custom.css

    Hi Devin,

    We are using the custom.css within the css folder in the enfold theme. We wish to do several things, but most importantly:

    1. Adjust the size of H1 and H2 so that they are smaller and lowercase

    2. Switch the upper level menu of social rom left to right and move the text area from left to right. Your team had given me code to do that before and we placed it in both the custom.css sheet and the quick css and both did not reflect. We even created our own class and placed it in boh and still the site chose to use the main css and not the new class that we entered.

    Is there a way to send you a private message with web link/login & password?

    #125843

    Hi Daniel,

    You can use a bit of javascript to unwrap the links. In your js>avia.js file add this line:

    $('.cart_list.product_list_widget li a').contents().unwrap();

    right after the document ready(function) like this:

    $(document).ready(function()
    {
    $('.cart_list.product_list_widget li a').contents().unwrap();

    Regards,

    Devin

    #25229
    unitedwc
    Participant

    UPDATE: I turned off plugins one at a time and found that Yoast’s Google Analytics plugin is the culprit. I reproduced the bug on a clean install of wordpress and enfold as well. Due to the fact that many people are using this plugin, can a solution be found to correct this? Note that this bug ONLY happens if you use a mailto link for the title link field: a link to a webpage is fine

    ________________________

    I am getting a strange effect when I try to add links in an iconbox, the parsing goes strange.

    I have this (note I replaced some of the <> with [] so that the code displays without linking):

    [av_one_third]

    [av_icon_box icon='59' position='top' title='Need Support?' link='manually,mailto:support@MYSITE.com' linktarget='no']

    Please visit our [a href="http://MYSITE.com/support/"]FAQ[/a] if you have not already done so. Else, please contact us at [a href="mailto:support@MYSITE.com"]support@MYSITE.com[/a] or 1.800.555.8697.

    [/av_icon_box]

    [/av_one_third]

    and on the website, the code looks like this:

    <div class="iconbox_icon heading-color avia-font-entypo-fontello"></div>

    <h3 class="iconbox_content_title">

    [a "="" support="" MYSITE.com="" http:="" href="mailto:support@MYSITE.com' title='Need Support?' ]Need Support?[/a]</h3><p>Please visit our [a href="]FAQ[/a]

    if you have not already done so. Else, please contact us at

    [a href="mailto:support@MYSITE.com"]support@MYSITE.com[/a]

    or 1.800.555.8697.

    <p></p>

    </h3>

    </div>

    </div>

    `Note the

    [a “=”” support=”” MYSITE.com=”” http:=”” href=”mailto:support@MYSITE.com’ title=’Need Support?’ ]Need Support?[/a]

    is really weird.

    #125550

    In reply to: Undoing Quick CSS

    The quick css code is just stored in the database (Theme Options) and the theme will add it to the dynamic stylesheet which will be generated every time you save the theme options (by default the path is http://yourdomain.com/wp-content/uploads/dynamic_avia/enfold.css ).

    #126262

    Please open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesslideshow_layerslider.php and replace

    if(empty($params['args']['id'])) $params['args']['id'] = reset($slides);

    with

    if(empty($params['args']['id']))
    {
    $params['args']['id'] = (!empty($slides) && is_array($slides)) ? reset($slides) : '';
    }

    I tagged this thread for Kriesi’s attention.

    #25278
    DavyE
    Participant

    I have been desperately looking for a plugin that would allow me to do the exact same thing as the Enfold Portfolio, as I would need to make several pages with similar galleries (partners, customers, photographs, …), but one that allows for multiple custom content types. Not one has looked as nice as the Enfold one, and none offered the ability.

    What I basically need is the portfolio split into multiple custom types so I don’t have to add all the partners, customers and so on in one big list. There will be literally hundreds of items in there, so I really need them to be split up.

    So I’m at the end of my ideas when I ask if any freelancer that is an ‘official’ Enfold developer can perhaps add this functionality for me. I’d like to know what it would cost for about 3 or 4 of those Portfolio-kind of types. Like I said, the only difference with the Portfolio one is that they are separated custom types.

    And another question:

    Can you also tell me what it would cost to make the filters into a dropdown list like so (see to the right of the page title)?

    Thanks in advance!

    Hey!

    This sounds like a permission problem. Maybe you don’t have (all) wordpress admin rights?

    Regards,

    Peter

    #125915

    I’m not sure if Enfold supports videos in the ajax preview content (didn’t test this feature yet) but you can try to insert the video into the “Add Preview Text” field. Use the Magic wand, select “Media Elements” > “Video” and embed the shortcode into the text content. I’ll tag this thread for Kriesi – maybe he wants to add an option for html5 videos (instead of a gallery/slideshow).

    @german_photographer

    I think, that LayerSlider is touch enabled and can be scaled…

    But maybe you want to try this one: http://soliloquywp.com

    I use this slider for a portfolio site, too.

    Ismael,

    thanks for trying. I contacted the developer.

    I think Royal Slider is one of the best sliders to present a photo portfolio (including the important fullscreen mode), so I hope he can fix it.

    Btw, I have almost the same issues with Flashlight.

    1) I didn’t test this but you can try following modification – first open up wp-contentthemesenfoldfunctions-enfold.php and replace

    'breadcrumb'	=> true,

    with

    'breadcrumb'	=> false,

    Then open up sidebar.php and replace

    echo "<div class='inner_sidebar extralight-border'>";

    with

    echo "<div class='inner_sidebar extralight-border'>";
    echo avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));

    2) You can use the “custom menu” widget which can display any menu you created on the Appearance > Menu option page.

    TheMoBrozer
    Participant

    Hi,

    I’m getting a ‘You do not have sufficient permissions to access this page’ error when I select the ‘Edit Dynamic Template of this entry’ menu item on the Front page in the Enfold theme.

    Any idea why? Everything else works just fine. The only thing that’s different from usual is that I’m using the French version of WordPress.

    Thanks

    #125958

    Hi!

    Please check if the wp-content/themes/ or wp-content/themes/enfold folder contains some other “temporary” folders like __MACOSX, etc.

    Regards,

    Peter

    #25268
    kc
    Participant

    hi, i install the new enfold theme on my localinstallation, but the the advanced layer editor is not working on to add new page`s.

    i click the button, but its nothing to see, only in add new portfolio its working, what is the error.

    thanks for help fpr unterstanding.

    i importet the dummystyles also

    thanks

    carsten

    #126261

    Hi

    I’m already using Enfold 1.7 and I don’t have W3 Total Cache Plugin installed so the website won’t be caching

    The error that gets posted happens every few hours?

    Thanks

    Iain

    #126330

    In reply to: Retina Logo in Enfold

    just a post that i made in error as I needed to understand the backtick stuff for code.

    #25267

    Topic: Retina Logo in Enfold

    in forum Enfold
    #25263
    nedimhazar
    Participant

    How can I exclude the page title of the landing page, like in the enfold-demo? So that it does not show “Home” and Breadcrumbs?

    Best, Nedim

    #114684

    A masonry grid layout for posts would be nice.

    #126070

    In reply to: A few issues

    Hi,

    1.) Add this on your custom.css or Quick CSS

    .home.archive.post-type-archive .template-shop.content.twelve.alpha.units {
    width: 650px;
    float: right;
    clear: none;
    margin-top: -90px;
    }

    2.) Use this

    body {
    font-size; 15px;
    }

    #top h1 a, #top h2 a, #top h3 a, #top h4 a, #top h5 a, #top h6 a { font-weight: inherit; text-decoration: none; color: inherit; }
    h1 { font-size: 34px; line-height: 1.1em; margin-bottom: 14px;}
    h2 { font-size: 28px; line-height: 1.1em; margin-bottom: 10px; }
    h3 { font-size: 19px; line-height: 1.1em; margin-bottom: 8px; } /*28*/
    h4 { font-size: 17px; line-height: 1.1em; margin-bottom: 4px; } /*21*/
    h5 { font-size: 16px; line-height: 1.1em; } /*17*/
    h6 { font-size: 14px; line-height: 1.1em; }

    3.) Customers are not appearing in the user are, What to check?

    4.) When you insert a logo image on Enfold > Theme Options. You have the option to select the size of the image before you click the “Insert image as logo” button.

    5.) Do you mean the shop category? Where do you want them to appear?

    Regards,

    Ismael

    #126053

    Hey,

    Download Enfold 1.7. Install Woocommerce plugin. Install the woocommerce pages then Import the Enfold dummy data.

    Regards,

    Ismael

Viewing 30 results - 239,911 through 239,940 (of 241,700 total)