Viewing 30 results - 218,971 through 219,000 (of 243,725 total)
  • Author
    Search Results
  • #277403

    Hi afarahani!

    Yes, unfortunately hostgator makes a lot of troubles with contact forms. You can try to install the smtp mail plugin: https://wordpress.org/plugins/webriti-smtp-mail/ and if this plugin doesn’t fix it try to install https://wordpress.org/plugins/contact-form-7/ and check if cf7 can send mails. If not please ask the hostgator support team to check the server configuration. A user reported his host doesn’t allow to send emails from a different tld and the only possible fix is to change the sender email. You can use this code to change the sender address – insert it at the bottom of child theme functions.php or enfold/functions.php and replace (Email address hidden if logged out) with your email address.

    
    add_filter('avf_form_from', 'avia_change_from', 10, 3);
    function avia_change_from($from,$new_post,$params){
    $from = ' (Email address hidden if logged out) ';
    return $from;
    }
    

    Cheers!
    Peter

    #277401

    Hi!

    Thank you for the info.

    Try logging out then login again. Right now, you’re using an old version of the theme, very old. The 2.4.2 version was released on November last year and is not compatible with WordPress 3.9. Please update the theme regularly. Download the latest version 2.8.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Ismael

    #277398

    In reply to: Custom Post type

    Hey rpletcher!

    If you want to customize the sidebar you can use a plugin like: http://wordpress.org/plugins/display-widgets/ or http://wordpress.org/plugins/widget-logic/

    To change the page title you need to insert this code into the child theme functions.php file (or enfold/functions.php):

    
    add_filter('avf_title_args', 'fix_blog_page_title', 10, 2);
    function fix_blog_page_title($args,$id) {
    $args['title'] = get_the_title($id);
    $args['link'] = get_permalink($id);
    return $args;
    }
    

    – it will replace Blog – Latest News with the current post title. If you want to set a specific text for all custom post type entries use this code:

    
    add_filter('avf_title_args', 'fix_blog_page_title', 10, 2);
    function fix_blog_page_title($args,$id) {
    if(get_post_type($id) == "mycpt"){
    $args['title'] = "My cpt page title";
    }
    return $args;
    }
    

    and replace mycpt with your custom post type slug and “My cpt page title” with your custom page title.

    Regards,
    Peter

    #277392

    In reply to: Place Image to bottom

    Hey icodemarchi!

    Thank you for visiting the support forum.

    You can add a unique selector for each Avia Elements. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    Edit any avia elements like the IMAGE element then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “awesome-image”.

    Add the custom css class after the elements default selector. Something like this on your custom.css or Quick CSS:

    .avia-image-container.awesome-image {
    position: relative;
    bottom: -150px;
    }

    Adjust the bottom value if necessary.

    Refer to this link for more info: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Ismael

    Devin, we just decided to do a work around for this issue and just go full blog on each page instead of grid-view. I’m afraid we’ve done so much customizations, that this error is most likely very deep-rooted into the database. The pagination error occurs only in grid-view, with the modified news widget on the same page.

    I have one last CSS request, or modification.

    Is there anyway to center the header logo, and flex the menus around the logo. Like 3 to the right, 3 to the left?

    Responsive header, logo center and menus to right and left. There is the option for logo center and menu under.
    We’ve purchased Ubermenu, and possibly want to use it as a 2nd level type drop down, from the current enfold menu. But, we do not need assistance with that.

    • This reply was modified 11 years, 6 months ago by Tk909.
    #277376

    Hi sbrohamm!

    Thank you for using the theme!

    The changes are not being saved on enfold_child.css file. Please make sure that the file permissions on dynamic_avia folder is correct. Remove the enfold_child.css file then toggle any options on Enfold > Theme Options then save changes. If that doesn’t work, please add this on Quick CSS or custom.css:

    .header_color .main_menu ul:first-child > li > a {
    color: #000000;
    }

    Cheers!
    Ismael

    #277371

    Hi Guys

    When I select Enfold Child / Theme Update : the dashboard says the Theme is up to date ?

    Do I still need to update ?

    Thx,
    Riaan.

    #277368

    Hi rhysbowen!

    Thank you for using the theme!

    1.) That is the gallery shortcode inside a 2/3 column layout. The side contents are text block and accordion element. You can see the same thing if you import the dummy data. :)

    2.) The link http://nbpromos.com/new-polos/ takes me to a 404 page. In case you want to know, the demo with the gallery uses images with 988x642px dimension. You can use larger images, the theme automatically crops them and use different thumbnail sizes on different parts of the theme.

    3.) You can change the body color on Enfold > General Styling. Look for the Main Content and Alternate Content tabs. Depends on the element that you want to change, you can use Quick CSS to add css modifications on the theme.

    4.) If you want to remove the title and breadcrumbs, go to Enfold > Header Layout > Header layout. Disable the option on Header Title and Breadcrumbs setting.

    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

    This reply has been marked as private.
    #277331

    Hi!

    Just as Jamie said above you’ll go to wp-login and login there.

    A great resource for learning about using WordPress is http://www.wpbeginner.com/ . The sign up is free and gives you access to all their videos to guide you through lots of the common questions and how-tos with WordPress.

    For Enfold specific things we have videos here: https://vimeo.com/channels/aviathemes

    And the regular docs here: http://kriesi.at/documentation/enfold/

    Best regards,
    Devin

    #277324
    albierogers
    Participant

    This is my first time closing my window and then trying to log back in.

    afarahani
    Participant

    1) I have 2 different background color in different pages. So on dark bg I need white font color. see bottom of this page:
    http://gator3130.hostgator.com/~elites/

    Also I have white bg and I need black font color on that page. see this page:
    http://gator3130.hostgator.com/~elites/contact-us/

    I have added a quick css but it has applied to the whole site. Is there any way to make it?

    2) How can I have the contact form labels inside each cell. take a look at this page:
    http://artbees.net/themes/jupiter-demo/pages/contact-us-2/

    Is it possible with Enfold too?

    Hey I am not an expert. give me a hand!

    #277319
    dalboslampen
    Participant

    Hi!
    Enfold is truly the most versatile wordpress theme ever – I always seem to end up using this theme!
    Could you help me with some magic to make my latest site perfect?

    I would like the rugged line just above the slide to be transparent at the lower part. The point is to make it look like teared paper, so the slider (and content) is not cut by the straight line.

    See attached screenshot.
    Rugged edge

    #277314

    Hey nicomad!

    For #1 you can target that specific menu item by its ID:

    
    #menu-item-3123 {
        background: #cccccc;
    }
    #menu-item-3123 a {
        color:#fff;
    }
    

    That will make the link white (#fff) and the background gray (#ccc).

    For #2 yes it is possible though the code example is designed for a child theme: http://kriesi.at/documentation/enfold/change-woocommerce-single-product-page-layout/

    You’ll need to put that in the top of your functions.php file just after

    
    if(isset($avia_config['use_child_theme_functions_only'])) return;

    If you need further adjustment past that however you’ll need to look into a freelance developer as the code snippets we have like this aren’t covered under the support scope.

    Regards,
    Devin

    #277308
    Netzie
    Participant

    Hi,

    I toke over a site that already was using enfold :)
    But not a child theme? :-(
    I saw the video and heard that everything would be reset when adding the child :-(
    Would it be possible to import the settings from enfold parent theme? and not start totally over..?

    #277282

    In reply to: Mobile view

    Hey!

    1. Enable this and set custom classes for both elements (slider & image), then use a code like:

    .image{ display: none; }
    @media only screen and (min-width: 767px) {
    .image{ display: block; }
    .slider{ display: none; }
    }

    2. Try adding this code to the Quick CSS:

    .logo, .logo img {
        margin: 0 auto !important;
    }

    Cheers!
    Josue

    #277279

    Hey!

    1. Please update the theme to the latest version (2.8.1).
    2. Try disabling all third-party plugins to see if it gets fixed.

    Best regards,
    Josue

    #277273
    This reply has been marked as private.
    #277265

    In reply to: Some layout problems

    This reply has been marked as private.
    #277242

    Hey!

    Are you using the latest version of Enfold / WordPress 3.9.1? have you tried disabling all third-party plugins?

    Best regards,
    Josue

    #277238
    mikegrace78
    Participant

    Hi there,

    I am wishing to customize the sidebar that appears on my post archives, so it can be similar (same) to the custom sidebar i have created for my product pages.

    I found a similar thread that discussed making a new php file for the archive sidebar, however the pastebin for the code had expired.

    Thanks very much in advance for your help.

    mike

    #277230

    Hello

    Thank you for your answer, but I also read this article:
    https://kriesi.at/support/topic/google-indexing-the-enfold-theme-folders/

    Could this article not solve the errors by adding this noindex to the google robot.txt?

    #277226
    DaveL77
    Participant

    Is there a way to specify image dimensions, as per GTMetrix, I receive a low score because I do not specify my height / width of my images when they are placed.

    I do not see any way in which I CAN specify these values.

    I’ve tried to add the dimension codes to the plaintext editor at the bottom of the page on the back-end, but it does not work for me
    http://gyazo.com/c9c3d60162da6206144747ecaf575e57

    I’m looking to solve these issues:
    http://gyazo.com/6f85f8794271d6333abe223f22b4c61e

    According to them, as well as other websites i’ve looked into I’m supposed to add height=”xxx” width=”xxx” into the tag, but there is no tag available with the enfold theme when I’ve inserted an image via the single image element on the backend editor.

    Any thoughts / ways to fix this?

    Thanks

    #277223

    Hello, I’ve created a shortcode, it worked perfectly, but because I am mixing css, html and php in the same function I got a big error, then I move the code to a html file and included directly into the shortcode without success, could you please help me find the better way to run this chunk of code into the homepage without sacrifying some sleep?

    code:

    <!– MOBILE NEWS –>
    <div id=”home-news-mobile” class=”row” style=”background:#c0c0c0;margin-top: 0px;margin-bottom: 20px;width: 100%;padding:0px 0px 10px 0px;font-weight:bold;”>

    <div style=”width:100%;height:57px;background:url(<?php echo home_url( ‘/’ ); ?>wp-content/themes/enfold/images/ga-home-newstop.png) no-repeat top right;”></div>

    <ul class=”homenews scroll-pane” style=”width:90%;margin-right:20px;padding:10px;float:right;font-weight:bold”>
    <?php $posts = get_posts(‘category=2&orderby=date&numberposts=20’); foreach($posts as $post) { ?>
    <li style=”list-style:none;text-align:right;line-height:24px;font-weight:bold”>” target=”_parent” style=”font-weight:bold;border:thin;”><?php the_title(); ?>
    <?php } ?>

    </div>

    <!– MOBILE PUB –>
    <div id=”home-pub-mobile” class=”row” style=”background:#c0c0c0;margin-top: 10px;margin-bottom: 20px;width: 100%;padding:0px;font-weight:bold”>

    <div style=”width:100%;height:51px;background:url(<?php echo home_url( ‘/’ ); ?>wp-content/themes/enfold/images/ga-home-pubtop.png) no-repeat top right;”></div>

    <ul class=”homenews scroll-pane” style=”width:90%;margin:20px;padding:10px;max-height:160px;float:right;text-align:right;font-weight:bold”>

    <?php wp_list_pages(‘depth=4&child_of=111&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=109&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=194&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=196&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=198&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=200&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=202&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=204&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=206&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=208&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=211&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=215&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=213&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=217&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=219&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=221&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=223&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=225&title_li=’); ?>

    <?php
    /*
    $pages = get_pages(array(‘child_of’ => ’17’, ‘exclude’ => ‘111’, ‘parent’ => 17, ‘sort_column’ => ‘menu_order’, ‘sort_order’ => ‘ASC’));
    foreach($pages as $page){
    print ‘<li style=”text-align:right;line-height:24px;font-weight:bold”>ID).'”>’.$page->post_title.’‘;
    }
    */
    ?>

    </div>

    <!– MOBILE COMMUNITY –>
    <div id=”home-community-mobile” class=”row” style=”margin:20px auto;width: 100%;text-align:center;”>
    <?php echo qtrans_getLanguage();?>/news/guzman-ariza-and-the-community/”>wp-content/uploads/2013/12/ga_home_community_<?php echo qtrans_getLanguage();?>.png” style=”width:260px” border=”0″ />
    </div>

    <div id=”home-news-desktop” class=”row” style=”margin-top: 10px;margin-bottom: 20px;width:100%;max-width:959px;height:292px;float: left;”>

    <div class=”col-box span-7″ style=”width: 682px;height:290px;float:left;margin: 3px 15px 3px 0px;text-align:center;background:url(<?php echo home_url( ‘/’ ); ?>wp-content/uploads/2013/12/ga_home_newsh_<?php echo qtrans_getLanguage();?>.jpg);”>

    <div class”holder” style=”position:absolute;top:6px;left:4px;width:460px;height:200px;border:0px solid red”>

    <div id=”homepane2″ class=”scroll-pane” style=”height:275px;”>

    <ul class=”homenews” style=”margin-right:20px;text-align:right;font-weight:bold”>
    <?php
    $pages = get_pages(array(‘child_of’ => ’17’, ‘exclude’ => ‘111’, ‘parent’ => 17, ‘sort_column’ => ‘menu_order’, ‘sort_order’ => ‘ASC’));
    foreach($pages as $page) {
    print ‘<li style=”text-align:right;line-height:24px;font-weight:bold”>ID).'”>’.$page->post_title.’‘;
    }
    ?>

    </div>

    </div>

    </div>

    <div class=”col-box span-3″ style=”float:left;margin: 3px 0px;text-align:center;”>

    wp-content/uploads/2013/12/ga_home_community_<?php echo qtrans_getLanguage();?>.png” style=”width:260px” border=”0″ />
    </div>

    </div>

    Thank you for your time and patience.

    #277218

    In reply to: media screen css

    well :

    http://lesalimentskabeya.com/?page_id=1176

    but the thing is that i didn’t update this website due to it’s beautyfull stability with the layer slider (it is the only layerslider iteration that have clean edge on png picture on IE, where all the newest version, had lost that png transparency clean edge property) so what im saying is that on the new enfold theme i have

    http://www.cdc-cc.ca/homepage/ (so how do i refer to homepage instead of page-id in the script provided above, i tried replacing page id with homepage and didn’t work)

    #277217

    Hi!

    Not possible at the moment with Enfold form, please understand that the purpose of the Enfold form is to be used a basic form. It is recommended to use a specialized plugin in these cases, like CF7 (as you said):
    http://contactform7.com/2009/11/26/selectable-recipient-with-pipes/

    If you are worried about the loss of styling don’t be, because Enfold form styles will be applied to the CF7 form.

    Best regards,
    Josue

    #277214
    JulieDesigns2
    Participant

    Hi All,

    I created a portfolio grid and one of the 5 items didn’t have the capability to scroll to the next item. I googled it and came across an Enfold support forum post suggesting that going into the Dashboard > Permalinks and saving it once will solve this problem.

    Here’s that link.

    However, when I saved the permalinks setting in my site and returned to the Artists page, only one of the 5 items appears on the page.

    Please help with both issues (1. restoring all items on the portfolio grid and 2. item entitled Robert Taylor to include a right sidebar arrow to click onto the next item)

    Note: I did create a child theme and added PHP to alphabetize the portfolio items.

    Thank you

    #277208

    Hey!

    You can insert images in a menu using the built-in mega-menu Enfold functionality, check this video for a reference:

    Cheers!
    Josue

    #277201

    The link you referenced is actually a form, that’s why i recommended Gravity Forms, unfortunately there is nothing like that in Enfold at the moment. Feel free to post your idea here.

    You can also contact a developer to customize the theme to your needs.

    Cheers!
    Josue

    #277196

    Hi!

    I’m not sure there is anything that we can directly do to help LayerSliders performance in this case. You can test it if youd like by switching to any other theme and pulling LayerSlider out of the theme files and install it like a normal plugin.

    The original topic you referenced isn’t applicable with Enfold since we don’t use the Fitvid script.

    As for the data backup, your best route would be to immediately contact your hosting provider and see if they can do a recovery of your previous theme files. Then move your customizations to a child theme.

    Best regards,
    Devin

Viewing 30 results - 218,971 through 219,000 (of 243,725 total)