Forum Replies Created

Viewing 30 posts - 45,301 through 45,330 (of 66,134 total)
  • Author
    Posts
  • in reply to: facebook share problem #510749

    Hi!

    It’s now showing a different image (http://www.wiwaldi.at/wp-content/uploads/2015/08/profil_alpha.jpg) but still not the right one. I would like to access the dashboard again but I think you delete the username above.

    Best regards,
    Ismael

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

    Hey!

    No problem. Glad we could help finally. If you have any question, let us know. :)

    Cheers!
    Ismael

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

    Hey!

    Oh. OK. My bad. I thought you want to remove all thumbnails in the theme. Try to modify framework > php > class-framework-widgets.php, remove this code around line 526:

    		echo "<span class='news-thumb $nothumb'>";
    			echo $image;
    			echo "</span>";

    If you want to do it in a child theme, I think copying the whole avia_newsbox class should do the trick.

    Cheers!
    Ismael

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

    Hey!

    I’m sorry but you didn’t mention anything about “sidebar” or anything like that. We’ll ask @josue to check it. :)

    Regards,
    Ismael

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

    Hey!

    Thank you for the info. We would like to confirm if you have a back up or restore point of the site just in case? We added the code in the child theme’s functions.php and uploaded an image to test it. Usually, the theme will generate 19 thumbnails but since we added the modification, it only generates 7 thumbnails which means that the code works. You can check the wp-content > uploads folder. Look for the image file with the file name “Abducted”. If you want to remove everything including the shop thumbnails, replace the code in the functions.php file with this:

    function wp_23223255_6469586506596() { 
    	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_image_size('shop_single', 0, 0);
          add_image_size('shop_thumbnail', 0, 0);
          add_image_size('shop_catalog', 0, 0);
    }
    add_action( 'after_setup_theme', 'wp_23223255_6469586506596', 11 );
    

    All you need to do now is to regenerate the thumbnails using the plugin that we suggested, if you want to remove existing thumbnails in your installation. Please create a backup before doing so.

    EDIT: I’m sure there’s a more simple function that can deal with this but this is all I can suggest for now.

    Regards,
    Ismael

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

    Hi!

    Alright. Please post the login details here. We’ll try to implement the code. Is it OK if we regenerate all the thumbnails? This might break pages with images in your site. If you have a dev site, we’ll test the code there.

    Regards,
    Ismael

    in reply to: Template Builder malfunction> #510702

    Hey!

    Great! Glad it is fixed. We have reported the issue to Kriesi so future patches should fix it. In the mean time, try to place all columns inside a color section to prevent the issue from ever happening. Thank you for the update. :)

    Best regards,
    Ismael

    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 9 years, 9 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

Viewing 30 posts - 45,301 through 45,330 (of 66,134 total)