Viewing 30 results - 218,971 through 219,000 (of 243,735 total)
  • Author
    Search Results
  • schoenj
    Participant

    Hi,

    I’ve problems with adding pictures to a gallery. I can upload the pictures, but when I want to ad them to an existing gallery it doesn’t work. I add some pictures (one by one) but when I select more pictures, they were not added to the gallery??
    I used your theme before and never had this problem.
    Any suggestions?
    I’am using WP3.9.1 and the last version of Enfold.

    Thanks, Jeroen

    I think my team and i are capable of doing this edit but it will require time. Can i hire/freelance someone from Kriesi :) and then you can incorporate into theme for everyone?

    Thank you Enfold team, i appreciate everyone’s feedback and advice in this thread.

    Keep up the good work guys, A+ Support

    • This reply was modified 11 years, 6 months ago by Tk909.
    #277451
    amazeingart
    Participant

    Possibly a bug here… using Enfold pretty much out of the box, as a child theme with no changes at all to any CSS yet. And the Woo Shopping Cart widget will not display without looking pretty broken (happens in 3 different browsers). Screenshot appended.

    The buttons in the WooCommerce shopping cart widget don’t clear each other, so they only display (somewhat) acceptably at very large browser window widths. And the second button (checkout) also gets clipped by the sidebar layout, so only a portion of it displays. So at many widths they look completely broken. I tried using variations of “display: block” and “clear:both” in some trial adjustments to the child theme’s style.css file to fix this. But both buttons are < a > elements within a single < p > element and my own efforts did not fix the problem.

    This is kind of a killer for an online store. Is this issue normal for the Woo cart widget with Enfold, or do I have some strange bug? I.e. are tricky CSS fixes needed out of the box to make this widget display cleanly? If they are, happen to know what to do?! ;)

    Chris

    <a href='https://automattic.pxf.io/y2XdbN/' target='_blank' rel='nofollow'/ rel=WooCommerce cart widget display bug" />

    #277444

    Hey Peter, thanks for the hint but I tried that already and it doesnt wotk with playlists! Not sure why the build in WP function doesnt work with enfold. I tried to create a play list in text editor [playlist ids="62,61,60,59,58,57"] and copied it to the code box – after saving the problems were back – was not able to edit any other element on the page – like shown in the video. Go back and try to edit any text or image http://mara-events.de/cms/test-page/ in the visual editor, I am not able to do so.

    #277438

    Hi!

    Please insert the code without the script tags into the google analytics field. You can also try to insert just the UA-ID: UA-32578680-1 into the field – Enfold will recognize the input as id and will add the required tracking code automatically.

    Regards,
    Peter

    Hi,
    I’ve exactly the same problem. I also use the latest version of wordpress and enfold. Is there a known problem?
    Patrick

    #277422

    Hey!

    Please try to open up enfold/config-bbpress/config.php and replace:

    
    add_filter('avia_blog_post_query', 'avia_remove_bbpress_post_type_from_query', 10, 2);
    

    with

    
    add_filter('avia_blog_post_query', 'avia_remove_bbpress_post_type_from_query', 10, 2);
    add_filter('avf_masonry_entries_query', 'avia_remove_bbpress_post_type_from_query', 10, 2);
    

    We’ll include this fix with the next theme update.

    Cheers!
    Peter

    #277418

    I dont know why it is added as html. Sure I can copy the html code from the text editor to a code element but that doesnt change anything. Even when I manualy add a short code for the player it crashes the page and produces javascript errors.

    Am I the only guy with this sort of errors? I mean it happens with different PCs and installs of enfold.

    #277412

    Hey!

    Tbh I’ve also no idea why the slider settings don’t save on your server. I’ll forward the issue to Kriesi and hopefully he can work something out. If not you can try a different slider plugin like Master Slider or Revolution Slider. They’re not bundled with the theme but they’re compatible with Enfold.

    Best regards,
    Peter

    #277407

    Hi Ismael,

    The widget area for the product page is an ‘Enfold Custom Widget Area’ i’ve created and named ‘Portfolio Sidebar’. It uses the custom menu widget to display the menu for the product pages (which are portfolio items).

    I would like to be able to add this same custom menu to the sidebar that displays on post archives.

    Let me know if you need any further clarification?

    cheers, mike

    #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

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