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/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
    Best Answer
    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: May 4, 2024In: Plugins

    How to access the Whitelabel settings of WP Security Ninja?

    aldinlapinig
    aldinlapinig
    Added an answer on May 5, 2024 at 7:18 am
    This answer was edited.

    That's awesome, man. I just got it as well and so far, I'm liking it. Support has been quick to answer my concerns as well especially with the whitelabel features. Anyway, to answer your question, just use the URL below replacing the domain name. https://YOURDOMAIN.COM/wp-admin/admin.php?page=wf-sn#Read more

    That’s awesome, man. I just got it as well and so far, I’m liking it. Support has been quick to answer my concerns as well especially with the whitelabel features. Anyway, to answer your question, just use the URL below replacing the domain name.

    https://YOURDOMAIN.COM/wp-admin/admin.php?page=wf-sn#sn_whitelabel
    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: February 22, 2024In: Plugins

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

    aldinlapinig
    Best Answer
    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
  4. Asked: August 10, 2023In: Divi Theme

    How to disable Divi AI?

    aldinlapinig
    Best Answer
    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
  5. Asked: December 10, 2022In: General

    How to fix error 503 when I install WooCommerce on my website?

    aldinlapinig
    aldinlapinig
    Added an answer on December 10, 2022 at 2:58 pm

    Hi @rogelio_wp, Error 503 is a server-side error that indicates that the server cannot handle the request due to temporary overload or maintenance. This error can occur when there is a large influx of traffic to your website or when the server is undergoing maintenance or updates. To fix this error,Read more

    Hi rogelio_wp,

    Error 503 is a server-side error that indicates that the server cannot handle the request due to temporary overload or maintenance. This error can occur when there is a large influx of traffic to your website or when the server is undergoing maintenance or updates.

    To fix this error, you can try the following steps:

    • Check the status of your server and ensure that it is up and running. If the server is down or undergoing maintenance, the error may be temporary and should resolve on its own once the server is back online.
    • Clear your browser’s cache and cookies, and try reaccessing the site. Sometimes, old or corrupted data in your browser’s cache can cause errors like this to occur.
    • Check for any plugin conflicts or issues with your WordPress installation. If you have recently installed or updated a plugin, it may be causing the error. You can try disabling all of your plugins and then re-enabling them one by one to determine which plugin is causing the issue.
    • Increase the PHP memory limit for your website. This error can sometimes occur when your website’s PHP memory limit is too low to handle the requests being made. You can increase the PHP memory limit by adding the following line to your wp-config.php file:

    define(‘WP_MEMORY_LIMIT’, ‘256M’);

    • If the error persists, you may need to contact your web host for further assistance. They may be able to help you troubleshoot the issue and determine the cause of the error.

    In general, it is important to regularly maintain and update your WordPress installation, including the core software, themes, and plugins, to prevent errors like this from occurring.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: August 29, 2022In: WordPress Security

    How to remove malware on my WordPress website? – [email protected] (administrator account)

    aldinlapinig
    aldinlapinig
    Replied to answer on September 26, 2022 at 5:29 pm

    Try not to delete it. Just change the role from administrator to a subscriber, then change the password. If possible block it and log them out from anywhere else. It should be in the user profile setting. Translation using Google Translate: 삭제하지 마십시오. 관리자에서 가입자로 역할을 변경한 다음 비밀번호를 변경하기만 하면 됩니다. 가능하면 차Read more

    Try not to delete it. Just change the role from administrator to a subscriber, then change the password. If possible block it and log them out from anywhere else. It should be in the user profile setting.

    Translation using Google Translate: 삭제하지 마십시오. 관리자에서 가입자로 역할을 변경한 다음 비밀번호를 변경하기만 하면 됩니다. 가능하면 차단하고 다른 곳에서 로그아웃하십시오. 사용자 프로필 설정에 있어야 합니다.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  7. Asked: August 29, 2022In: WordPress Security

    How to remove malware on my WordPress website? – [email protected] (administrator account)

    aldinlapinig
    aldinlapinig
    Replied to answer on September 19, 2022 at 9:54 pm

    Hi, like seogod mentioned, I deleted the user account wadminw and create a new account with the same name. Different password and different email. Also blocked using WP Cerber. This way, hopefully the malware won’t be able to create the same user account.

    Hi, like seogod mentioned, I deleted the user account wadminw and create a new account with the same name. Different password and different email. Also blocked using WP Cerber. This way, hopefully the malware won’t be able to create the same user account.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  8. Asked: August 29, 2022In: WordPress Security

    How to remove malware on my WordPress website? – [email protected] (administrator account)

    aldinlapinig
    aldinlapinig
    Replied to answer on September 18, 2022 at 8:58 pm

    That's a viable idea. I just found out that the same user has been created again on some of my sites. Will do the same as you mentioned. Thanks for sharing your idea, bro. Let's see if it works for me.

    That’s a viable idea. I just found out that the same user has been created again on some of my sites. Will do the same as you mentioned. Thanks for sharing your idea, bro. Let’s see if it works for me.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  9. Asked: August 29, 2022In: WordPress Security

    How to remove malware on my WordPress website? – [email protected] (administrator account)

    aldinlapinig
    aldinlapinig
    Added an answer on September 10, 2022 at 8:52 pm

    Hi, I just experience this on my sites as well. I have 2 that's infected with this. The weird thing is that in WP-Cerber log, the account is created by my main Administrator account. So, it's hard to block it as it seems done by the user account. I have tried changing my password and logging out froRead more

    Hi, I just experience this on my sites as well. I have 2 that’s infected with this. The weird thing is that in WP-Cerber log, the account is created by my main Administrator account. So, it’s hard to block it as it seems done by the user account. I have tried changing my password and logging out from anywhere else, but did not fix the issue.

    When the account is created, it installs random theme related to SEO. When I first discovered it, I found several folders in the “Plugins” folder randomly named – query-monitor, optxxx, zend-fonts-wp, seoplugins, etc.

    I’m still looking for ways to stop this. Really annoying.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  10. Asked: March 25, 2022In: Plugins

    I want to have two versions of one page for different region. For example first one would be for Dubai and will have the original domain name, and the second will be fo Singapure which will have additioan /sg tag

    aldinlapinig
    aldinlapinig
    Added an answer on April 8, 2022 at 10:24 am

    The best plugin I've tried for this is WPML. What you are trying to setup should be achieved by this plugin easily.

    The best plugin I’ve tried for this is WPML. What you are trying to setup should be achieved by this plugin easily.

    See less
      • 2
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
1 2 3 4

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.