Forum Replies Created

Viewing 30 posts - 1,861 through 1,890 (of 33,339 total)
  • Author
    Posts
  • Hi,
    Ok, we will close this then.
    Thanks for helping Guenni007, but since the plugin author is working on this, it is probably better for the solution to be applied to the plugin.

    Best regards,
    Mike

    in reply to: Unable to activate Captcha on contact form #1439341

    Hi,
    In the element under security:
    Enfold_Support_5300.jpeg

    Best regards,
    Mike

    in reply to: Styling Colour section – space issue #1439340

    Hey woogie07,
    It is the padding for the portfolio grid, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .avia-fullwidth-portfolio .sort_width_container {
        padding: 0;
    }

    Best regards,
    Mike

    in reply to: Unable to activate Captcha on contact form #1439338

    Hey kerrya4446,
    The contact form was not set to use the capcha, I set it for you:
    Enfold_Support_5298.jpeg

    Best regards,
    Mike

    in reply to: Change color in table cell #1439337

    Hi,
    It looks like you are using the pricing table on your site, try using the tabular data instead.
    Enfold_Support_5296.jpeg

    Best regards,
    Mike

    Hi,
    I put it in your child theme functions.php, going forward make your changes in the child theme settings, if you want to add another page add the page ID here with a comma:
    Enfold_Support_5294.jpeg
    “101” is your blog page, the other number is just an example.

    Best regards,
    Mike

    in reply to: Sticky buton #1439334

    Hey carmen,
    Change this:

    @media screen and (min-width: 1800px) {
      .mobile-nav {
      display: none;
      }
      }

    to this:

    @media screen and (max-width: 1800px) {
      .mobile-nav {
      display: none;
      }
      }

    Best regards,
    Mike

    in reply to: Pagination issues #1439332

    Hey menainfosec,
    Thanks for the link to your site when I look at your /blog/ page I see a blog element with a pagination at the bottom, this matches your links above, but this is from a plugin and not the theme, so you will need to look in the plugin options to find where to disable the pagination.
    If you can’t find the setting you can hide it with this css:

    .wpspw_pagination {
    	display: none;
    }

    There is not a way to “delete” these pagination pages because they are showed by the WordPress query, you could try using a redirect plugin and and redirect any page the includes /page/* to a different page that you choose

    Best regards,
    Mike

    Hey Dominic,
    The function that you have linked to is to be added to the child theme functions.php, I activated your child theme and added it for you, please check.

    Best regards,
    Mike

    Hey kaiserlino,
    There might be a way to do this, can you give a specific example such as a link to a taxonomy detail detail page and what ALB elements you would like to add to it.
    We may be able to inject the ALB elements into the page. Would you be doing this many times and would you need to change this often once it was done?

    Best regards,
    Mike

    in reply to: Change color in table cell #1439323

    Hey cuccarini,
    Thank you for the link to your site and your screenshot, you are using the pricing table on your site, try using the tabular data instead.
    I created a test page with the tabular data and I made the table background color transparent so the color section Background Gradient would show instead of filling the empty cells with a red background color. This is how I filled the table:
    Enfold_Support_5288.jpeg
    I then added the custom class club-table
    Enfold_Support_5290.jpeg
    Then I used this css:

    .main_color table.club-table {
        border-collapse: separate;
        border-spacing: 10px;
        background: transparent;
        font-size: 18px;
        font-weight: bold;
        color: #fff;
    }
    
    .main_color table.club-table td,
    .main_color table.club-table th {
    	border: 2px solid #fff;
        padding: 5px;
        background: transparent;
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        height: 120px;
        vertical-align: middle;
        text-align: center;
    }
    .main_color table.club-table tr {
        border: 2px solid #fff;
        background: transparent;
    }
    tr:first-child th, tr:first-child td,
    tr th:first-child, tr td:first-child {
    	border: 2px solid #fff;
    }
    table.club-table > tbody > tr:nth-child(2) > td:nth-child(1),
    table.club-table > tbody > tr:nth-child(3) > td:nth-child(1) {
    	background-color: #1e90ff;
    }
    table.club-table > tbody > tr:nth-child(3) > td:nth-child(2) {
    	background-color: #808080;
    }
    table.club-table > tbody > tr:nth-child(2) > td:nth-child(3) {
    	background-color: #808080;
    }
    table.club-table > tbody > tr:nth-child(3) > td:nth-child(3) {
    	background-color: #ee711f;
    }
    table.club-table > tbody > tr:nth-child(3) > td:nth-child(5) {
    	background-color: #29a715;
    }

    This is the result:
    Enfold_Support_5292.jpeg
    Please give this a try.

    Best regards,
    Mike

    in reply to: Can’t make grid row slim #1439320

    Hi,
    I believe that your question is that you are trying to use a grid row element with four cells and only want to have the background colors show as a bar:
    Enfold_Support_5282.jpeg
    you have set the min height to 15px:
    Enfold_Support_5280.jpeg
    but it shows as 60px high:
    Enfold_Support_5278.jpeg
    you need to go to each cell and set the Cell Padding to zero:
    Enfold_Support_5284.jpeg
    then it will show as 15px:
    Enfold_Support_5286.jpeg

    Best regards,
    Mike

    in reply to: Modal with validation #1439319

    Hey BoXstA,
    I’m not able to test your code on my test site because it doesn’t include the popup code, nonetheless if this works with a text link I imagine that you could use some css to style it into a button. PLease like to your test page so we can see, or if you need to use a button element, link to your test page with the working text link and the button below it that you want to use and include a admin login in the Private Content area so we can examine closer

    Best regards,
    Mike

    in reply to: loading audio files from external sources? #1439317

    Hi,
    Perhaps a plugin like Html5 Audio Player would be a good choice because it uses a shortcode that allows you to add the audio file URL, so it could be from an external source or a directory on your site that you upload to via FTP and bypass the WordPress media library completely:
    Enfold_Support_5276.jpeg

    Best regards,
    Mike

    Hi,
    Thank you for your patience, this seems strange and I have not seen any issues like this. Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_avf_post_css_create_file( $create )
    {
    	return false;
    }
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );

    Then enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and change your Performance setting to Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression ▸ Use minified theme files without merging
    and clear any cache plugin and see if it happens again in the future, if it does don’t fix with the steps above but include a admin login in the Private Content area so we can examine.
    We will leave this open to see it is happens again.

    Best regards,
    Mike

    in reply to: fixed background image in mobile view #1439314

    Hi,

    @TakiwaSoulArt
    the issue is most IOS devices do not display this correctly, this was a known issue with IOS for a few years, they have only recently fixed this for the newest devices but many people still use the older devices. I recommend using it as is.
    Shall we close this thread then?

    Best regards,
    Mike

    Hey Peter,
    Thank you for reporting that this is a known RM bug, in this case the best solution is to wait for their update. Since there is nothing for us to do here I imagine we should close this thread then?

    Best regards,
    Mike

    in reply to: WordPress 6.5 – Enfold Implications and Settings? #1439311

    Hey goldengate415,
    Thank you for your patience, using the add_theme_support(‘appearance-tools’); adds option for the Block Editor, the same is for the other improvements, these will not add anything to the ALB builder. The WordPress official documentation doesn’t explain any further about the Block Editor changes, but you can play around with it to find the improved Appearance Tools if you are curious.

    Best regards,
    Mike

    in reply to: Change Doughnut Chart #1439304

    Hey marco593,
    Thank you for your patience, the following javascript will add the chart title to the center of the Doughnut Chart,
    Enfold_Support_5270.jpeg
    If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    Enfold_Support_2680.jpeg
    then add this code and save.

    function doughnut_chart_with_title_in_center() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', function() {
        function waitForChartJs() {
            if (typeof Chart === 'undefined') {
                setTimeout(waitForChartJs, 50);
            } else {
                registerCenterTitlePlugin();
            }
        }
    
        function registerCenterTitlePlugin() {
            Chart.register({
                id: 'centerTitle',
                beforeInit: function(chart) {
                    // Dynamically hide the title and legend
                    const options = chart.options;
                    if (options.plugins) {
                        if (!options.plugins.title) {
                            options.plugins.title = {};
                        }
                        options.plugins.title.display = false; // Hide title
    
                        if (!options.plugins.legend) {
                            options.plugins.legend = {};
                        }
                        options.plugins.legend.display = false; // Hide legend
                    }
                },
                afterDraw: function(chart) {
                    if (chart.config.type === 'doughnut') {
                        const ctx = chart.ctx;
                        const width = chart.width;
                        const height = chart.height;
                        const fontSize = (height / 114).toFixed(2);
                        ctx.font = fontSize + "em sans-serif";
                        ctx.textBaseline = "middle";
                        ctx.textAlign = "center";
    
                        // Use existing title if set, otherwise use a default text
                        const text = chart.options.plugins.title.text || 'Your Title Here';
                        const textX = width / 2;
                        const textY = height / 2;
    
                        ctx.fillText(text, textX, textY);
                    }
                }
            });
        }
    
        waitForChartJs();
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'doughnut_chart_with_title_in_center', 99 );

    This is the result:
    Enfold_Support_5272.jpeg

    Best regards,
    Mike

    in reply to: Iframe extends beyond edges #1439295

    Hey Stefan,
    I believe that you are referring to this button:
    Enfold_Support_5268.jpeg
    It seems to look correct to me, the orange arrow expands the button options and they also show in the center of the mobile screen.
    Perhaps a screenshot of what you see would help.

    Best regards,
    Mike

    in reply to: make the button in transparent square #1439293

    Hey Yaphoon,
    You could use a button element with the “Dark Transparent” option and disable the button border, then only the button text will show.
    You can also use the advanced options in the button element to set the hove color.

    Best regards,
    Mike

    in reply to: blog meta #1439268

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Menu Navigation #1439239

    Hey androklis,
    Try creating a second menu that has the full menu item url back to the homepage and use that menu on the other pages and use the menu with just the hash tags on the homepage.
    Then use this filter in your child theme functions.php to display the different menus:

    add_filter( 'wp_nav_menu_args', 'home_nav_menu_args' );
    function home_nav_menu_args( $args = '' ) {
    if($args['theme_location'] === 'avia') {
    if( is_page( 627 ) ) {
    $args['menu'] = '25';
    }
    return $args;
    }
    }
    
    add_filter( 'wp_nav_menu_args', 'other_nav_menu_args' );
    function other_nav_menu_args( $args = '' ) {
    if($args['theme_location'] === 'avia') {
    if( is_page( 3 ) ) {
    $args['menu'] = '24';
    }
    return $args;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: error on website being created by layerslider #1439237

    Hi,
    I tested your page with this script and it looks like the click is on the av-horizontal-gallery-next button, try disabling the Gallery Image Rotation.

    jQuery(document).on("click", "body,html", function(event) {
        console.log("Clicked Element:", event.target);
        console.log("Element Classes:", event.target.className);
        console.log("Element ID:", event.target.id);
        console.log("Element Tag Name:", event.target.tagName);
        console.log("Parent Elements:", getParentElements(event.target));
    });
    
    function getParentElements(element) {
        var parents = [];
        var currentElement = element.parentNode;
        while (currentElement !== null) {
            parents.push(currentElement);
            currentElement = currentElement.parentNode;
        }
        return parents;
    }
    

    Best regards,
    Mike

    in reply to: blog meta #1439234

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .html_elegant-blog #top .post-entry .blog-categories {
        display: inline;
        margin-left: 10px;
    }
    
    .html_elegant-blog #top .slide-content .slide-meta {
        display: inline;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: ok missing #1439233

    Hey schweg33,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #main .avia-section {
    	  z-index: 2;
        position: relative;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Masonry not displaying cover pictures #1439232

    Hi,
    When I checked it was collapsed, but it’s there and there is no image added:
    Enfold_Support_5262.jpeg
    So try adding an images and I imagine that they will show on the frontend.
    If you don’t see in with your login try ensuring that it is enabledin the WordPress Block Editor options:
    Enfold_Support_5264.jpeg
    or try using the login you posted for us.

    Best regards,
    Mike

    in reply to: Accessibility #1439230

    Hi,
    Try opening the slider, then open your slide, then go to the Advanced tab and look for the Heading Tag option.

    Best regards,
    Mike

    in reply to: contact form notification in Chinese? #1439188

    Hi,
    As I understand you are using cloudflare with Google Recaptcha v2 and when you use either the Enfold contact form or wpforms sometimes the email come in Chinese.
    Is this correct? I don’t think that you are using a multi language site nor using Chinese, and it looks like you have tried disabling everything except the cloudflare.
    Your pastebin code was removed so we can’t see it. Try disabling the cloudflare.
    Also try using WP Mail SMTP so your mail is sent though your webhost SMTP mail server instead of the standard PHP mail that WordPress uses. You will want to use the “Other SMTP” option in the plugin and then get your SMTP server info from your webhost, this video should help you set it up
    I would recommend using SMTP for your site email anyways, so if this doesn’t help with the Chinese issue, it will help with your overall WordPress mail, so it is worth the extra steps.

    Best regards,
    Mike

    in reply to: Getresponse integration #1439108

    Hey kuba9991,
    I see that you have this error in the browser console:
    Uncaught SyntaxError: Unexpected token '<'
    try removing the code comments:
    <!-- GetResponse Analytics --> <!-- End GetResponse Analytics -->
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

Viewing 30 posts - 1,861 through 1,890 (of 33,339 total)