Forum Replies Created

Viewing 30 posts - 28,801 through 28,830 (of 67,570 total)
  • Author
    Posts
  • in reply to: Image upload error #979936

    Hi,

    Thanks for the update.

    What is the image format? I managed to upload a large jpeg image without encountering the said issue. (see private field)

    Best regards,
    Ismael

    in reply to: Google reCAPTCHA for avia contact form #979935

    Hi,

    We no longer recommend that script anymore. Please try Sucuri or Wordfence to protect your site from spams and malicious scripts.

    // https://www.wpbeginner.com/opinion/sucuri-review-how-sucuri-helped-us-block-450000-wordpress-attacks-in-3-months/

    Best regards,
    Ismael

    in reply to: Blog #979934

    Hi,

    I just noticed that the posts content were added through the advance layout builder. You can’t display those content on the blog overview page. Please switch to the default editor or add an excerpt to the posts built with the advance layout builder. (see private field)

    Did you add any modifications to the theme? The content is not displaying on the posts built with the advance layout builder.

    Best regards,
    Ismael

    in reply to: Sidebar breaking when using fullwidth-slideshow #979933

    Hi,

    Sorry for the late response. I’m still not sure what causes the issue. I tried to enable the debug mode but I can’t edit the functions.php file via Appearance > Editor panel. Please add this code to enable the debug mode.

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
      return "debug";
    }

    Is it OK to deactivate the plugins while debugging the issue?

    Best regards,
    Ismael

    in reply to: Extra language #979919

    Hi,

    You’ll need the plugins listed above to do that. It’s not possible with the theme by default, unfortunately.

    Best regards,
    Ismael

    in reply to: Increasing the size of timeline icon/picture #979918

    Hi,

    I just noticed the vertical alignment of the indicators. Please use this one instead.

    #av_section_3 .avia-timeline li:nth-child(3) .av-milestone-date, #av_section_3 .avia-timeline li:nth-child(2) .av-milestone-date, #av_section_3 .avia-timeline li:nth-child(1) .av-milestone-date {
        top: 20px;
    }

    Best regards,
    Ismael

    Hi,

    How can we edit this portfolio item (see private field)? I can’t find it in the Portfolio Items panel.

    Best regards,
    Ismael

    in reply to: Adding Opt-in to Small Bar Above Logo Area? #979532

    Hi,

    Thanks for the update. I can’t access the site though. Did you remove the account posted above?

    Best regards,
    Ismael

    in reply to: Adding Opt-in to Small Bar Above Logo Area? #979531

    Hi,

    Thanks for the update. I can’t access the site though. Did you remove the account posted above?

    Best regards,
    Ismael

    in reply to: Demo Import – Media missing #979529

    Hi,

    Thanks for the update.

    I would like to try and import the demo on my end but the site is taking a bit too long to respond. Where is it hosted?

    Best regards,
    Ismael

    in reply to: Problem By Yoast Local SEO #979524

    Hi,

    I’m sorry for the late response.

    The posts query becomes invalid when the plugin is activated.

    SELECT SQL_CALC_FOUND_ROWS wp_posts.ID
    FROM wp_posts 
    LEFT JOIN wp_term_relationships
    ON (wp_posts.ID = wp_term_relationships.object_id) 
    LEFT JOIN wp_term_relationships AS tt1
    ON (wp_posts.ID = tt1.object_id)
    INNER JOIN wp_postmeta
    ON (wp_posts.ID = wp_postmeta.post_id)
    WHERE 1=1 
    AND ( wp_term_relationships.term_taxonomy_id IN (3) 
    AND tt1.term_taxonomy_id IN (3) )
    AND wp_posts.post_type = 'post'
    AND (wp_posts.post_status = 'publish'
    OR wp_posts.post_status = 'private')
    GROUP BY wp_posts.IDwp_posts.ID
    ORDER BY wp_posts.post_date DESC
    LIMIT 0, 10
    

    We’ve added this code in the functions.php file to fix the issue.

    add_filter('posts_groupby_request', 'avf_posts_groupby_request_mod', 10, 1);
    function avf_posts_groupby_request_mod($groupby) {
    	if(is_tag()) {
    		$groupby = 'wp_posts.ID';
    	}
    	return $groupby;
    }
    

    Please ask the plugin author if there’s a function inside the plugin that alters the posts query.

    Best regards,
    Ismael

    in reply to: One page with tabs as menu #979504

    Hi!

    Yes, you can re-create the design using Enfold. However, the button switch or transition is not included in the theme by default so you’ll still have to create a script for that.

    Regards,
    Ismael

    in reply to: 2 columns grid row for mobile devices #979367

    Hey laptophobo,

    Thank you for using Enfold.

    Yes, it’s possible. Please try this css code to adjust the cells’ width.

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .av-flex-cells .no_margin {
        display: block;
        margin: 0;
        height: auto !important;
        overflow: hidden;
        padding-left: 8% !important;
        padding-right: 8% !important;
        width: 50%;
        float: left;
    }
    }
    

    Or provide a link to a test page so that we can inspect it.

    Best regards,
    Ismael

    in reply to: DIsplay Username on invoice/order #979365

    Hey charlescheng719,

    Thank you for using Enfold.

    This short article might help.

    // http://www.remicorson.com/display-woocommerce-order-customer-username-on-edit-order-page/

    Best regards,
    Ismael

    in reply to: Image upload error #979363

    Hey guidocortez,

    Thank you for using Enfold.

    Have you tried to increase the maximum execution time limit? Please provide the site url and include the login credentials so that we can check the dashboard.

    Best regards,
    Ismael

    in reply to: One page with tabs as menu #979362

    Hey orpheas,

    Thank you for using Enfold.

    The site is made with react if I am not mistaken. Unfortunately, you can’t achieve that seamless page transition without the proper modifications in the theme. Please hire a freelance developer or contact our partner, Codeable.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Stick header problems #979358

    Hey whdsolutions,

    Thank you for using Enfold.

    You can set a different logo for transparent headers. Go to the Enfold > Header > Transparency Options panel and then set the “Transparency Logo” option.

    Best regards,
    Ismael

    in reply to: Font summary blogpost #979357

    Hey Eefke,

    Thank you for using Enfold.

    The blog content is using the default font size.

    body#top {
        font-size: 16px;
    }

    Use this css code if you want to specify the size manually.

    .slide-entry-excerpt.entry-content {
        font-size: 11px;
    }
    

    Best regards,
    Ismael

    in reply to: enfold themne #979353

    Hey Tony Featherstone,

    We would like to apologize if you’re having trouble with theme.

    It seems to be an issue with the database configuration. Is it working properly when you switch to a different theme? If you have access to the file server, locate the wp-config.php file and then add the following code.

    define('WP_ALLOW_REPAIR', true);
    

    Once the file has been saved, copy and paste the following URL into your browser bar: https://site.com/wp-admin/maint/repair.php (you have to adjust the site url)

    If you have the time, please register to the forum using your purchase code.

    // https://kriesi.at/support/register/

    Unfortunately, we don’t handle refunds here so you have to contact themeforest.

    Best regards,
    Ismael

    in reply to: problems with all changes in the theme #979350

    Hey BlueSolution,

    Thank you for using Enfold.

    The scripts and stylesheets are probably cached or merged. Please go to the Enfold > Performance and disable the css/js compression options. You may also need to disable the cache and minification plugins if they are active.

    Best regards,
    Ismael

    Hey Mosaik-Gin,

    Thank you for using Enfold.

    A few line breaks were generated between the icons. We enabled the debug mode and removed the space between the icon shortcodes manually.

    Best regards,
    Ismael

    in reply to: Privacy Policy message for review form #979343

    Hey Matthias,

    Alright. Please open a new thread if you need anything else.

    Thank you for using Enfold! :)

    Best regards,
    Ismael

    in reply to: orphan punctuation between posts on blog index page #979342

    Hey kgalatz,

    Thank you for using Enfold.

    The category links are hidden on the home page. This is the css code..

    .home .blog-categories a {
        display: none;
    }

    Replace it with this one to hide the entire category container…

    .home .blog-categories {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: cant show entire posts content in categories #979338

    Hey tal1234,

    Thank you for using Enfold.

    The content of the advance layout builder will not display in the category pages. You have to use the default editor if you want the posts content to display.

    Best regards,
    Ismael

    in reply to: Portfolio/Masonary grid next/previous order #979334

    Hey envapk2,

    Thank you for using Enfold.

    I didn’t check but the sort or orderby parameter of the demo’s portfolio/masonry is probably set to something else instead of “date”. You can use one of these filters to reverse the entries of the post navigation.

    // https://kriesi.at/support/topic/how-to-display-avia-post-nav-with-same-category-only/#post-947205
    // https://kriesi.at/support/topic/sequence-order-masonry-portfolio-grid/#post-920191

    Best regards,
    Ismael

    in reply to: Huge size for a Masonry Object #979333

    Hey psipar,

    Thank you for using Enfold.

    That is the default size used by the masonry element. The maximum width and height are set to 705px.

    It’s quite odd that the generated thumbnails are bigger or heavier than the original images. Do you mind if we take a look at the page with the masonry element? We would like to inspect the images.

    Best regards,
    Ismael

    in reply to: Avia Layout Builder not working in post #979332

    Hey reyatmadi,

    Thank you for using Enfold.

    The site is running on an old version of the theme, 4.0.2. You have to upgrade the theme to version 4.4.1 and re-configure the Header/Main Menu options to get rid of the errors. Please don’t forget to check the new Performance panel. Disable the css/js compression temporarily while you’re editing the site.

    Best regards,
    Ismael

    in reply to: Unwanted menu items showing up in sidebar #979330

    Hey WHCATV9,

    Thank you for using Enfold.

    Disable the “Page Sidebar navigation” option from the Enfold > Sidebar Settings panel to get rid of the default sidebar navigation.

    Best regards,
    Ismael

    in reply to: Recent Posts Styling #979327

    Hey Christian,

    Thank you for using Enfold.

    Edit the “Widget Title” element in the Enfold > Advanced Styling panel to adjust the titles’ appearance. The widgets will acquire the general or default font (paragraph/links) styling set in the Enfold > General Styling panel.

    If you can’t find the desired element in the advanced styling list, you may need to use the Quick CSS field.

    Best regards,
    Ismael

    in reply to: Search Result Page | System page + Search Field in Menu #979325

    Hey Christian,

    Thank you for using Enfold.

    1.) This feature is already in production but it’s not included in the core yet. You have to edit the search page style using custom css codes for now.

    2.) I would like to check the site but it returns a “forbidden” error.

    Best regards,
    Ismael

Viewing 30 posts - 28,801 through 28,830 (of 67,570 total)