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: September 9, 2020In: Themes

    Disable mobile menu in Astra theme

    aldinlapinig
    aldinlapinig
    Replied to answer on October 21, 2020 at 9:22 am
    This answer was edited.

    Hi @romac, I have not seen any mobile menu search on any of our installed Astra demo here. Can you provide the link of your live site so I can help you better? Thanks and welcome to the community.

    Hi @romac, I have not seen any mobile menu search on any of our installed Astra demo here. Can you provide the link of your live site so I can help you better? Thanks and welcome to the community.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Asked: October 11, 2020In: General

    How to setup cron job when special characters not allowed by my hosting?

    aldinlapinig
    aldinlapinig
    Added an answer on October 11, 2020 at 11:39 am

    Hi, @gilbertomagnate! In some hosting like hostinger, cron jobs with special symbols in the syntax will require you to make a bash (.sh) file which would support any form of cron job needed. A cron job that would execute a bash file looks like this: */5 * * * * /bin/sh /path/to/shell/script.sh And tRead more

    Hi, gilbertomagnate!

    In some hosting like hostinger, cron jobs with special symbols in the syntax will require you to make a bash (.sh) file which would support any form of cron job needed.

    A cron job that would execute a bash file looks like this:
    */5 * * * * /bin/sh /path/to/shell/script.sh

    And the bash.sh files contents should look like this example:
    #!/bin/sh/usr/bin/php/home/u234927279/public_html/sendy/scheduled.php > /dev/null 2>&1 cron:run

    The first part #!/bin/sh indicates this is a Bash file that will be opened by the cron.

    The second part loads the php libraries: /usr/bin/php

    The third part is the cron job that otherwise did not work because of the special characters. cron:run executes the cron job inside the file every time the file is opened.

    Once you have created the file with your cronjob in it, simply create a simple cronjob that points to the new .sh file.

    I hope that helps.

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

    How to add header.php to child theme?

    aldinlapinig
    aldinlapinig
    Replied to answer on September 30, 2020 at 12:05 pm

    Glad to help, @kargaelo.

    Glad to help, kargaelo.

    See less
      • 0
    • 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
    Best Answer
    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 9, 2020In: Themes

    Disable mobile menu in Astra theme

    aldinlapinig
    aldinlapinig
    Replied to answer on September 23, 2020 at 8:54 am

    Glad to help. Take care.

    Glad to help. Take care.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: September 9, 2020In: Themes

    Disable mobile menu in Astra theme

    aldinlapinig
    aldinlapinig
    Added an answer on September 22, 2020 at 10:50 pm

    Hi @michaelburge, you can use the following CSS code to disable the mobile menu by hiding the burger button. .ast-mobile-menu-buttons { display: none; } Hope that helps. Good luck.  

    Hi michaelburge, you can use the following CSS code to disable the mobile menu by hiding the burger button.

    .ast-mobile-menu-buttons {
    display: none;
    }

    Hope that helps. Good luck.

     

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  7. Asked: July 10, 2020In: Plugins

    Hi, I have experienced an issue with a Free plugin …

    aldinlapinig
    aldinlapinig
    Replied to answer on September 14, 2020 at 9:44 am

    @Mayur, I agree with you 100%. Never ever use Nulled Themes and Plugins - both free and paid. These people are already has questionable agenda by spending time nullyfying these premium WP themes and plugins.

    @Mayur, I agree with you 100%. Never ever use Nulled Themes and Plugins – both free and paid. These people are already has questionable agenda by spending time nullyfying these premium WP themes and plugins.

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

    Mobile menu text color issue

    aldinlapinig
    Best Answer
    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
  9. Asked: August 21, 2020In: Plugins

    WooCommerce Subscriptions is inactive error after updating to WooCommerce 4.4.0+

    aldinlapinig
    aldinlapinig
    Added an answer on August 27, 2020 at 4:22 pm

    Hi guys, I have previously experienced this but I forgot if that's on WooCommerce Subscriptions or Subscriptio. Plugin names can get confusing. The way I solved it was to restore the site to the latest version that didn't issue, deactivate any caching plugin and update WooCommerce and its database aRead more

    Hi guys,

    I have previously experienced this but I forgot if that’s on WooCommerce Subscriptions or Subscriptio. Plugin names can get confusing.

    The way I solved it was to restore the site to the latest version that didn’t issue, deactivate any caching plugin and update WooCommerce and its database again.

    I hope this helps. Let me know.

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

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

    aldinlapinig
    Best Answer
    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
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.