Sign Up


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 question.


Forgot Password?

Need An Account, Sign Up Here
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

Share WordPress knowledge!

WordPress Q & A platform!

Ask A Question
What's your question?
  • Recent Questions
  • Most Answered
  • Answers
  • No Answers
  • Most Visited
  • Most Voted
  • Random
  • Recent Posts
  1. Asked: October 11, 2020In: General

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

    aldinlapinig

    aldinlapinig

    • 0 Questions
    • 14 Answers
    • 7 Best Answers
    • 138 Points
    View Profile
    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
  2. Asked: September 26, 2020In: Themes

    How to add header.php to child theme?

    aldinlapinig

    aldinlapinig

    • 0 Questions
    • 14 Answers
    • 7 Best Answers
    • 138 Points
    View Profile
    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
  3. Asked: September 9, 2020In: Themes

    Disable mobile menu in Astra theme

    aldinlapinig

    aldinlapinig

    • 0 Questions
    • 14 Answers
    • 7 Best Answers
    • 138 Points
    View Profile
    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
    • 2
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: September 8, 2020In: Themes

    Mobile menu text color issue

    aldinlapinig

    aldinlapinig

    • 0 Questions
    • 14 Answers
    • 7 Best Answers
    • 138 Points
    View Profile
    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
  5. Asked: August 25, 2020In: General

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

    george

    george

    • 0 Questions
    • 1 Answer
    • 0 Best Answers
    • 24 Points
    View Profile
    george
    Added an answer on August 25, 2020 at 10:47 am

    You can make use of @media rule of CSS like below. /* Set the background color of body to tan */ body { background-color: tan; } /* On screens that are 992px or less, set the background color to blue */ @media screen and (max-width: 992px) { body { background-color: blue; } } /* On screens that areRead more

    You can make use of @media rule of CSS like below.

    /* Set the background color of body to tan */
    body {
    background-color: tan;
    }

    /* On screens that are 992px or less, set the background color to blue */
    @media screen and (max-width: 992px) {
    body {
    background-color: blue;
    }
    }

    /* On screens that are 600px or less, set the background color to olive */
    @media screen and (max-width: 600px) {
    body {
    background-color: olive;
    }
    }

    See less
    • 2
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: August 21, 2020In: Plugins

    WooCommerce Subscriptions is inactive error after updating to WooCommerce 4.4.0+

    findingSun

    findingSun

    • 0 Questions
    • 3 Answers
    • 0 Best Answers
    • 27 Points
    View Profile
    findingSun
    Added an answer on August 22, 2020 at 2:45 pm

    I have experienced the exact same issue with two different plugins on my sites. After updating WooCommerce on my two sites with EU VAT Pro and Subscriptio, both paid plugins which appear to no longer recognized WC 4.4.1 following the database update. Have you found a solution to this? I hope someoneRead more

    I have experienced the exact same issue with two different plugins on my sites. After updating WooCommerce on my two sites with EU VAT Pro and Subscriptio, both paid plugins which appear to no longer recognized WC 4.4.1 following the database update. Have you found a solution to this?

    I hope someone can help me us with the issue.

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  7. Asked: August 18, 2020In: Themes

    How to create a dropdown with sub-menu in Astra? (Beginner)

    aldinlapinig

    aldinlapinig

    • 0 Questions
    • 14 Answers
    • 7 Best Answers
    • 138 Points
    View Profile
    aldinlapinig
    Added an answer on August 19, 2020 at 6:02 am

    Hi @michaelburge, you can do all these in the Appearance >> Menus in your backend. If you don't need the link on the top menu, create a custom link with "#" (pound sign) as the link and name it accordingly. [caption id="attachment_384" align="aligncenter" width="300"] If you don't want it to bRead more

    Hi michaelburge, you can do all these in the Appearance >> Menus in your backend. If you don’t need the link on the top menu, create a custom link with “#” (pound sign) as the link and name it accordingly.

    menu wordpress

    Custom Menu in WordPress

    If you don’t want it to be an active link use # sign or use URL if you wish to link it to a page or even other websites

    Then add the submenus you need.

    Submenu in wordpress

    You can add a page, post or another custom menu as submenu. If you are using WooCommerce, you can add products, product categories and so on.

    Once added, just drag it a little bit to the right under the top menu you previously created.

    Submenu in WordPress

    Click save.

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

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

    aldinlapinig

    aldinlapinig

    • 0 Questions
    • 14 Answers
    • 7 Best Answers
    • 138 Points
    View Profile
    aldinlapinig
    Added an answer on July 11, 2020 at 9:42 pm

    Hi Leanda, For FREE plugins the easy workaround for this is to download the plugin from the repository and manually upload & install it on the backend of your WordPress website. You can follow the video below. Hope this helps.

    Hi Leanda,

    For FREE plugins the easy workaround for this is to download the plugin from the repository and manually upload & install it on the backend of your WordPress website.

    You can follow the video below.

    Hope this helps.

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

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

    Brett
    Added an answer on November 11, 2019 at 10:44 am

    The error means there is something using port 80. Mostly streaming, chat applications use this port. You have to check it on your system whether you are using Mac OS, Linux or Windows. I'm on windows machine and found that it was used by skype. I use the classic one so, I managed to change the defauRead more

    The error means there is something using port 80. Mostly streaming, chat applications use this port. You have to check it on your system whether you are using Mac OS, Linux or Windows.

    I’m on windows machine and found that it was used by skype. I use the classic one so, I managed to change the default port it’s using.

    See less
    • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  10. Asked: October 18, 2019In: Divi Theme

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

    aldinlapinig

    aldinlapinig

    • 0 Questions
    • 14 Answers
    • 7 Best Answers
    • 138 Points
    View Profile
    Best Answer
    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
1 2

Sidebar

Blazing Fast Cloud Hosting

Adv

Most Popular Theme

Adv

Explore

  • Home
  • Questions
    • Recent Questions
  • Communities
  • Polls

© 2020 WP Ask. All Rights Reserved.
Powered by WP Superhero.