Forum Replies Created

Viewing 30 posts - 46,771 through 46,800 (of 67,597 total)
  • Author
    Posts
  • in reply to: multisite clone duplicator doesn't work properly with enfold #510701

    Hi!

    I’m sorry for the link, I thought it’s still working. I don’t have much experience with multisite myself so I actually didn’t know that you need the pro version of the WP Migrate DB for multisite installation. Again, I apologized. In that case, let’s try this. Clone the site using the current plugin. Go to the original site’s Enfold > Import / Export panel then export the theme settings. After that, go to the cloned site’s Enfold > Import / Export panel then import the theme settings.

    Regards,
    Ismael

    in reply to: Blog Categories #510699

    Hey!

    Can you please provide a link to the tags archive page? Try to replace the code with this:

    add_filter('avia_layout_filter', 'avia_change_post_layout', 10, 2);
    function avia_change_post_layout($layout, $post_id){
    	if(is_tax('portfolio_entries') || is_tag()) {
            $layout['current'] = $layout["fullsize"];
            $layout['current']['main'] = "fullsize";
    	}
        
        return $layout;
    }

    Cheers!
    Ismael

    in reply to: Blurry Thumbnails Enfold Latest News Widget #510696

    Hey!

    A function to absoluteley hide / delete / remove the image – that is what I am talking about!!

    Please read my posts carefully. We know that you want to delete the thumbnails. The code above will remove the thumbnails or will not generate the thumbnails because we set the dimension to 0. It will NOT RESIZE the thumbnails. The code will REMOVE the thumbnails. If you’re confuse why we need the plugin, because it will delete all existing thumbnails in the uploads folder then generate the registered thumbnails. But since we set the dimension of the preset thumbnails to ZERO, it will NOT REGENERATE the thumbnails.

    EDIT: This is the code that you need to add in the functions.php file:

    function ava_image_sizes() { 
    	add_image_size('masonry', 0, 0);
    	add_image_size('magazine', 0, 0);
    	add_image_size('widget', 0, 0);
    	add_image_size('featured', 0, 0);
    	add_image_size('featured_large', 0, 0);
    	add_image_size('extra_large', 0, 0);
    	add_image_size('portfolio_small', 0, 0);
    	add_image_size('gallery', 0, 0);
    	add_image_size('entry_with_sidebar', 0, 0);
    	add_image_size('entry_without_sidebar', 0, 0);
    	add_image_size('square', 0, 0);
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    PS: Please read our posts directly from the forum instead of your email because we tend to modify the reply in a few cases.

    Best regards,
    Ismael

    in reply to: Different header on home page #509898

    Hi scarlettr8!

    Thank you for using Enfold.

    Can you please provide a screenshot of the header that you want to display in the home page? If the Layout > Header visibility and transparency is not working, maybe we can hide some of the elements with css.

    Best regards,
    Ismael

    in reply to: I found a bug in the list capability in Text Blocks #509894

    Hey!

    I’m sorry for the delay. How can we reproduce the issue? When I checked your first post, there’s a double slash in the “li” closing tag which makes it invalid:

    xx<//li>
    

    I tried to reproduce the issue on a text or code block but the ul tag works fine:

    <ul>
    	<li>Click here to add your own text</li>
    	<li>Click here to add your own text</li>
    	<li>Click here to add your own text</li>
    </ul>
    

    Best regards,
    Ismael

    in reply to: Background Images unique per page #509890

    Hi WSRJohn!

    Thank you for using Enfold.

    You’re looking for the Color Section element under Layout elements panel.

    Best regards,
    Ismael

    in reply to: PHP Fatal Error #509888

    Hi!

    You can actually change the “open_basedir” directive value or at least you can ask your hosting provider. Tell them that the restriction somehow conflicts with the theme. Or ask them to change the directory where the /tmp should be generated, I think that is the “upload_tmp_dir” value but I’m not sure. Your hosting provider should be able to help.

    Cheers!
    Ismael

    in reply to: Insert 10 latest posts from a certain WP category #509883

    Hey varun21!

    Thank you for using Enfold.

    The “Dynamic content from posts” will only get the fist post. You need to create 10 layers if you want to display 10 posts. Regarding the background, can you please provide a screenshot? Or a link to the actual page?

    Cheers!
    Ismael

    in reply to: HTML/Display Errors Using Visual Content Editor #509871

    Hey!

    Thank you for the update.

    1.) Use this in the Quick CSS field to remove the color section border:

    .container_wrap {
        border: 0;
    }

    2.) Add this in the Quick CSS field to fix the special heading color:

    .main_color h1, .main_color h2, .main_color h3, .main_color h4, .main_color h5, .main_color h6 {
        color: inherit;
    }

    Best regards,
    Ismael

    in reply to: show number of posts wrapped by '' NSFW #509868

    Hi jmalevic!

    Thank you for using Enfold.

    I’m not sure what you meant by “the <!– 全記事数 –> had one too many dashes”? The <!– –> is the html comment tag:
    http://www.w3schools.com/tags/tag_comment.asp

    Best regards,
    Ismael

    in reply to: Portfolio categories not showing right postst/acting werid #509863

    Hey!

    I don’t think that’s necessary but if you’re comfortable with database and stuff like that, maybe you can give it a try. I created a test page here and the sort option is working as expected: http://b-dev.nl/c5s/test-3/

    Maybe, you can delete the old page then use that one instead. Don’t forget to update the slug.

    Regards,
    Ismael

    in reply to: Some first problems of a begginer #509858

    Hi!

    You’re trying to put the main menu below the logo? Is that correct? Go to Enfold > Header panel. Set the “Menu and Logo Position” to show the menu below the logo. Regarding the .po files, after you translate strings in the poedit software, you have to compile it to .mo file. Did you try the plugin? There’s an option to sync the .mo and .po file.

    Regards,
    Ismael

    in reply to: Sorting category links missing on portfolio page #509855

    Hi!

    The demo page (http://kriesi.at/themes/enfold/portfolio/) contains a PORTFOLIO GRID element. It’s not a category or archive page.

    Besides, if you’re on a category or portfolio category page, it doesn’t make sense to have a category sort because you’re looking on portfolio items with the same category.

    http://kriesi.at/themes/enfold/portfolio_entries/css/

    Regards,
    Ismael

    • This reply was modified 10 years, 7 months ago by Andy.
    in reply to: Special Heading Shortcode Malfunction #509853

    Hey!

    Thank you for the update. Is this the same post? Can you please provide a link to the page? We created a test page here: http://www.dominiquehurley.com/wp-admin/post.php?post=15214&action=edit

    Cheers!
    Ismael

    in reply to: resize image box on MOBILE #509843

    Hey!

    Please add the code suggested above inside the css media query.. The final code should be like this:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .av-flex-cells .av_one_fourth {
        padding-left: 0% !important;
        padding-right: 0% !important;
        width: 50%;
        float: left;
    }
    
    .av-image-caption-overlay-center { font-size: 14px !important; }
    }

    Cheers!
    Ismael

    in reply to: Add margin/padding to gallery thumbnails #509841

    Hey!

    The spaces between the items should be doable. Add this in the Quick CSS field:

    .grid-entry {
        padding: 10px;
    }

    Unfortunately, the arrows will require custom modification that is outside the scope of support. You can contact codeable: http://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: multisite clone duplicator doesn't work properly with enfold #509840

    Hey scubasnsi!]

    Thank you for using Enfold.

    We usually recommend this plugin in order transfer or clone the site: https://wordpress.org/plugins/wp-migrate-db/

    The plugin should transfer the theme options database correctly. Refer to this link for more info: http://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684

    Cheers!
    Ismael

    in reply to: Template Builder malfunction> #509833

    Hi!

    Did you see the test page? Make sure that you placed all columns (outside the color section) inside a color section. I checked the “About” page and the columns are still outside the color section: http://www.id-mke.com/wp-admin/post.php?post=15&action=edit

    Add a color section below the existing color section with background then relocate the columns there. I’m not suggesting to relocate the columns inside the “background section”. Do this for all sets of columns inside the page.

    Cheers!
    Ismael

    Hi!

    Unless anyone advises otherwise it seems the only issue I’d be concerned with is Enfold Licencing – clearly I’d have 2 copies of the theme. I have paid for one which is intended for the use of highlandbespokefurniture.co.uk. Every commercial site I develop for customers is another licence (8 so far I think) – but they would not be expecting to pay for it again.

    We’ll ask Kriesi regarding the “license” issue. Did you add any modification to the .htaccess file?

    Best regards,
    Ismael

    in reply to: how to insert a scrollbox responsive #509820

    Hey!

    If you want to keep the height of “scrollbox” same as the image beside it, apply a minimum height to it:

    .avia_textblock.scrolltext {
        min-height: 400px;
    }

    Use css media queries to adjust the property on different screen sizes.

    Best regards,
    Ismael

    in reply to: Shop pictures and Layered Navigation #509818

    Hi!

    Thank you for the update. Unfortunately, the plugin’s layered nav widget will only work for native woocommerce pages such as the base shop page. It’s not going to work on custom pages made in the advance layout builder.

    Regards,
    Ismael

    in reply to: Social Share Buttons not working on new page ++ #509817

    Hi!

    It’s from a third party plugin. Try to hide it with this in the Quick CSS field:

    .jp-carousel-titleanddesc-title {
        display: none !important;
    }

    Cheers!
    Ismael

    in reply to: New Facebook Like Box #509816

    Hey!

    You can use the theme’s facebook widget on Appearance > Widgets panel. We added an example for you: http://meredithmaselli.com/test/

    Regards,
    Ismael

    in reply to: Variable product full width #509814

    Hi!

    It’s possible to hide the title with this:

    .single-product .product_title.entry-title {
        display: none;
    }

    Best regards,
    Ismael

    Hi!

    I changed the file permission to 644 but there’s still an error in the site. Did you add any modifications other than the one we suggested? Please ask your hosting provider to restore the site from a backup.

    Cheers!
    Ismael

    Hey!

    Yes, I was able the reproduce the issue again. I tried to update the functions.php file and adjust the values in the previous code but after I updated the page, I got a white screen again, same as the last time. I checked the funcitons.php file via FTP and the file permission is set to 0604. Please set it to 644.

    We adjusted the values in the code. I hope it works now. The code should trigger the resize event after every second to force the masonry items to reposition correctly while loading.

    EDIT: I can’t override the functions.php file. Please update the file permission of the functions.php to 644.

    Cheers!
    Ismael

    in reply to: Accordion customization #509801

    Hey!

    Please adjust the code to something like this:

    .togglecontainer section div > * { border: 0px !important; background: transparent !important; }
    

    Regards,
    Ismael

    Hi!

    Again, we are very sorry for the closed thread. We will try our best to help you out.

    We tried to access the advance layout builder but it’s not working as described. There is this old error regarding “fastcgi”, it’s a server api. Switching to “cgi” somehow fixed it for another user. If you don’t mind, maybe, you can ask the hosting provider to switch the server api to “cgi” as stated here:

    https://kriesi.at/support/topic/avia-layout-builder-not-loading/#post-137892
    https://kriesi.at/support/topic/big-issues-setting-up-a-complete-new-site-with-enfold/#post-335920

    Thank you for your patience.

    Regards,
    Ismael

    in reply to: Template Builder malfunction> #509636

    Hi!

    We placed all columns inside a color section and it fixed the issue. We have notified Kriesi regarding this issue and should expect a fix on the next patch. Thank you for the updates. http://www.id-mke.com/test/

    Regards,
    Ismael

    in reply to: Sorting category links missing on portfolio page #509441

    Hey!

    Alright. You’re actually looking on a portfolio category page. There are no sorting option there by default.

    Please check the demo: http://kriesi.at/themes/enfold/portfolio_entries/css/

    Regards,
    Ismael

Viewing 30 posts - 46,771 through 46,800 (of 67,597 total)