Sign Up

Browse


Have an account? Sign In Now

Sign In

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.


Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

WP Ask

WP Ask Logo WP Ask Logo

WP Ask Navigation

  • Home
  • Recent Questions
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • Questions
    • Recent Questions
  • Communities
  • Polls
  • Home
  • Recent Questions
  • Contact Us
Home/ aldinlapinig/Best Answers
Ask aldinlapinig
  • About
  • Questions
  • Polls
  • Answers
  • Best Answers
  • Asked
  • Followed
  • Favorites
  • Posts
  • Comments
  • Followers Questions
  • Followers Answers
  • Followers Posts
  • Followers Comments
  • Questions
  • Polls
  • Answers
  • Best Answers
  • Asked
  • Followed
  • Favorites
  • Posts
  • Comments
  • Followers Questions
  • Followers Answers
  • Followers Posts
  • Followers Comments
  • Questions
  • Polls
  • Answers
  • Best Answers
  • Asked
  • Followed
  • Favorites
  • Posts
  • Comments
  • Followers Questions
  • Followers Answers
  • Followers Posts
  • Followers Comments
  • Questions
  • Polls
  • Answers
  • Best Answers
  • Asked
  • Followed
  • Favorites
  • Posts
  • Comments
  • Followers Questions
  • Followers Answers
  • Followers Posts
  • Followers Comments
  1. Asked: December 3, 2024In: Themes

    Persistent Top Banner Issue on WoodMart Theme

    aldinlapinig
    aldinlapinig
    Added an answer on December 3, 2024 at 7:43 pm

    It would be easier to help you if you have shared your site's link that has the issue. That could be a bug in the theme. Disabling the banner on the settings should not show the banner anymore. I have looked at the demo of woodmart theme to understand your case. Can you try adding the following CSS?Read more

    It would be easier to help you if you have shared your site’s link that has the issue. That could be a bug in the theme. Disabling the banner on the settings should not show the banner anymore.

    I have looked at the demo of woodmart theme to understand your case. Can you try adding the following CSS? Let me know if that works. You should contact support or the author of the theme to get this sorted out.

    .whb-row.whb-top-bar.whb-not-sticky-row.whb-without-bg.whb-without-border.whb-color-dark.whb-col-1 {
         display: none;
    }
    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Asked: February 22, 2024In: Plugins

    How can I remove the "Powered by Fluent Forms" at the Footer of the form?

    aldinlapinig
    aldinlapinig
    Added an answer on February 23, 2024 at 6:17 pm

    Hi @Melissa, Try this: Go to your WordPress dashboard. Navigate to the "FluentForm" plugin settings. Look for the option related to the form footer or branding. Disable or customize the settings to remove the "Powered by FluentForm" text from the form footer. Save your changes. Let me know how it goRead more

    Hi melissa,

    Try this:

    1. Go to your WordPress dashboard.
    2. Navigate to the “FluentForm” plugin settings.
    3. Look for the option related to the form footer or branding.
    4. Disable or customize the settings to remove the “Powered by FluentForm” text from the form footer.
    5. Save your changes.

    Let me know how it goes.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: August 10, 2023In: Divi Theme

    How to disable Divi AI?

    aldinlapinig
    aldinlapinig
    Added an answer on August 11, 2023 at 10:42 am
    This answer was edited.

    You may use CSS to disable it. However, if you wish to disable Divi AI on both the frontend and backend, you may use the following code to be added to your "mu-plugin" folder. To implement your custom plugin as a Must Use plugin (mu-plugin) in WordPress, you need to follow these steps: Access your WRead more

    You may use CSS to disable it. However, if you wish to disable Divi AI on both the frontend and backend, you may use the following code to be added to your “mu-plugin” folder.

    To implement your custom plugin as a Must Use plugin (mu-plugin) in WordPress, you need to follow these steps:

    • Access your WordPress files. You can do this using FTP or your hosting control panel’s file manager.
    • Navigate to the wp-content directory. If the mu-plugins directory does not exist, create one.
    • Create a new PHP file inside the mu-plugins directory. You can name it something related to your plugin, such as disable-divi-ai-function.php.
    • Paste your plugin code into this new PHP file and save it.

    Here is your code for reference:

    /*
    <?php
    /**
     * Plugin Name: Disable Divi AI
     * Plugin URI: https://aldinlapinig.com/
     * Description: Plugin to disable Divi AI on the frontend and backend.
     * Author: Aldin Lapinig
     * Author URI: https://aldinlapinig.com
     * Version: 1.0
     */
    
    function print_custom_css() {
        echo '<style>
        .et-fb-icon.et-fb-icon--divi-ai,
        button.et-fb-button.et-fb-button.et-fb-button--info.et-fb-ai-options-button,
        .et-fb-right-click-menu__item.et-fb-right-click-menu__item--generate_content_with_ai,
        .et-fb-settings-option-ai__button {
        display: none !important;
        }
        </style>';
    }
    
    /* Disable Divi AI on the frontend */
    function disable_ai() {
        print_custom_css();
    }
    add_action( 'wp_head', 'disable_ai' );
    
    /* Disable Divi AI on the backend */
    function disable_backend_ai() {
        print_custom_css();
    }
    add_action( 'admin_head', 'disable_backend_ai' );
    ?>
    */
    Let me know if this works.
    

    See less
      • 4
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: September 26, 2020In: Themes

    How to add header.php to child theme?

    aldinlapinig
    aldinlapinig
    Added an answer on September 26, 2020 at 10:34 am
    This answer was edited.

    Hi @kargaelo!  First of all, welcome to the community, buddy. I hope you enjoy your stay here. Regarding your question, I think the easiest way to do this is to create a copy of the template files you want to change from the parent theme, in this case the header.php,  then make your modifications toRead more

    Hi kargaelo!  First of all, welcome to the community, buddy. I hope you enjoy your stay here.

    Regarding your question, I think the easiest way to do this is to create a copy of the template files you want to change from the parent theme, in this case the header.php,  then make your modifications to the copied files. This way you will not be affecting or changing the parent files.

    For more info about WordPress child themes, you may refer to this documentation.

    https://developer.wordpress.org/themes/advanced-topics/child-themes/

    Hope that helps.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: September 8, 2020In: Themes

    Mobile menu text color issue

    aldinlapinig
    aldinlapinig
    Added an answer on September 9, 2020 at 1:07 pm

    Hi @michaelburge, this issue should be easily fixed on elementor, if you can't find the settings for it, try to use the CSS code below. .main-header-menu .menu-link, .ast-header-custom-item a { color: #212121; //change the color value accordingly to your liking } Hope that helps. Goodluck

    Hi michaelburge, this issue should be easily fixed on elementor, if you can’t find the settings for it, try to use the CSS code below.

    .main-header-menu .menu-link, .ast-header-custom-item a {
    color: #212121; //change the color value accordingly to your liking
    }

    Hope that helps. Goodluck

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: August 25, 2020In: General

    How can I make CSS to take effect on mobile phones?

    aldinlapinig
    aldinlapinig
    Added an answer on August 26, 2020 at 7:51 am

    For your case, you can use the following code directly. @media only screen and (max-width: 768px) {    css code here... } Good luck!

    For your case, you can use the following code directly.

    @media only screen and (max-width: 768px) {
       css code here…
    }

    Good luck!

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  7. Asked: November 10, 2019In: Tools

    Heads-up! Local’s router is having trouble starting Error on Local …

    aldinlapinig
    aldinlapinig
    Added an answer on November 12, 2019 at 12:24 pm
    This answer was edited.

    I agree with Brett. I've experienced the same port conflict when I was using XAMPP or MAMP. There are two (2) workarounds that solved the issue. OPTION 1: Set Router Mode to Localhost. This will allow Local to  automatically find available port on your computer. Downside, your local site installatioRead more

    I agree with Brett. I’ve experienced the same port conflict when I was using XAMPP or MAMP.

    There are two (2) workarounds that solved the issue.

    OPTION 1: Set Router Mode to Localhost. This will allow Local to  automatically find available port on your computer. Downside, your local site installation will use localhost as domain name instead of your site domain. But it shouldn’t matter in the development. See short clip and instruction below:

      • Go to Menu >> Preferences >> Advanced
      • Set Router Mode from the default “Site Domains” to “localhost”
      • Click Apply
      • Exit menu by click x button on the upper right.
      • It will prompt a warning to fix domain, just click fix it and it should automatically reconfigure your site installation domain setup.

    OPTION 2: Stop HTTP function on Windows (I’m not sure how to do it on Mac or Linux).

      • Open CMD with Admin privilege – right click CMD icon, go to more and select Run as Administrator.
      • Type net stop http and press enter.
      • It’ll prompt you with ” Do you want to continue this operation (Y/N)”. Just press Y and hit enter.
      • Wait for it to finish terminating several services.
      • Run Local again and make sure Router Mode is in “Site Domains” mode
    See less
      • 6
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  8. Asked: October 18, 2019In: Divi Theme

    Hi everyone, How make this pagination styling on Divi Portfolio …

    aldinlapinig
    aldinlapinig
    Added an answer on October 20, 2019 at 7:03 am

    Hello Abhishek, Please try to install this plugin, it this should give you the numbered pagination that you can customize further. https://wordpress.org/plugins/wp-pagenavi/ Hope this helps.

    Hello Abhishek,

    Please try to install this plugin, it this should give you the numbered pagination that you can customize further.

    https://wordpress.org/plugins/wp-pagenavi/

    Hope this helps.

    See less
      • 2
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  9. Asked: June 25, 2019In: General

    How to fix “There has been a critical error on …

    aldinlapinig
    aldinlapinig
    Added an answer on June 28, 2019 at 1:35 pm

    There can be several factors causing this kind of error. In my experience, this is usually due to plugins or theme conflicts that may happen after updating theme. To troubleshoot for possible plugin conflict, you need to access your site data via cPanel File Manager or FTP or equivalent tool dependiRead more

    There can be several factors causing this kind of error. In my experience, this is usually due to plugins or theme conflicts that may happen after updating theme.

    To troubleshoot for possible plugin conflict, you need to access your site data via cPanel File Manager or FTP or equivalent tool depending on your hosting or system.

    Note: Create a backup of your site before doing the following.

    1. Check for plugin conflict.
      • Via cPanel File Manager or FTP, go to YourWebsite/wp-content/
      • Rename the folder “plugins” to anything like “plugins_bkp”
      • Try refreshing the site if that solves the issue.
      • If the error is gone, this means the issue is caused by the plugin. Otherwise, go to number 2. Check for theme conflict.
      • To figure out the conflicting plugin, create a new folder with the name “plugins”
      • Individually copy each folder content in “plugins_bkp” to the new “plugins” folder you created.
      • Keep refreshing the site after each plugin copied to check if that specific plugin is causing the issue.
      • Once you find the problematic plugin, delete that and access your WP Dashboard to install a fresh copy of that plugin.
    2. Check for theme conflict
      1. Via cPanel File Manager or FTP, go to YourWebsite/wp-content/themes/
      2. Delete the theme folder you are using for your site.
      3. Try refreshing the site if that solves the issue.
      4. If the error is gone, access your WP Dashboard to install a fresh copy of your theme.

    If after installing fresh copies of your plugin or theme and the issue is not solved, contact support for the item.

    I hope that helps.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  10. Asked: May 17, 2019In: Plugins

    How to backup a WordPress website properly using Duplicator plugin?

    aldinlapinig
    aldinlapinig
    Added an answer on May 17, 2019 at 11:15 am
    This answer was edited.

    Before creating a package, try setting Archive Engine of on Duplicator >> Settings >> Packages >> Archive >> Archive Engine. Please see attached video. Let me know how it goes, Melissa.

    Before creating a package, try setting Archive Engine of on Duplicator >> Settings >> Packages >> Archive >> Archive Engine. Please see attached video. Let me know how it goes, Melissa.

    See less
    Attachment

      • 9
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp

Sidebar

Most Popular Theme

aalan

Blazing Fast Cloud Hosting

aalan

Explore

  • Home
  • Questions
    • Recent Questions
  • Communities
  • Polls

© 2024 WP Ask. All Rights Reserved.
Powered by Ako.ph.