• For some reason my About Us page is not displaying on the Front Page(Home). In Edit mode where the widgets can be re-ordered it is the second item “Maskitto:Include Page” with Services in the third position. When I go to my home page About Us is not showing at all and Services is the second item. Help

Viewing 10 replies - 1 through 10 (of 10 total)
  • Theme Author shufflehound

    (@shufflehound)

    Hello,

    Did you tried to delete Maskitto: Include Page widget and add it back again?

    Thread Starter Mizpac76

    (@mizpac76)

    Yes, I figured it out.

    Thread Starter Mizpac76

    (@mizpac76)

    How is the footer removed after donating? Will a file be sent to me?

    Theme Author shufflehound

    (@shufflehound)

    Hello,

    When donation is completed just write us to our mail – info at shufflehound dot com and we will give you simple instructions to do that.

    Thread Starter Mizpac76

    (@mizpac76)

    Thank you. Donation and email sent.

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    *Reads. Wait. What?*

    @mizpac76 Excuse me for a minute.

    How is the footer removed after donating? Will a file be sent to me?

    @shufflehound I may be mis-reading this, but are you charging people to remove a footer link in your theme via a donation?

    @mizpac76 Where was the link? I’ll be happy to take a look and walk you through creating and activating a child theme without any link. In writing, in this topic and for free.

    Theme Author shufflehound

    (@shufflehound)

    Our design copyrights is the only thing what we want users to leave as it is. We put lot of work hours to make this theme happen, therefore anyone who don’t want to leave our work copyrights, but want direct support from this theme developers, voluntarily can make a small donation.

    There are two ways that you can remove the copyrights in the footer of the theme.

    • Use CSS to remove it. You can do this by going into the footer.php and finding the <div> that surrounds the section that you want to remove. Inside the <div> you should find a class that will equal something. In this case it is copyrights. Then you can simply input the class into a CSS code (the following) and put the CSS code at the bottom of your themes style.css or in a custom CSS plugin.
      .copyrights {
      	display: none;
      }

      The CSS code is basically finding the <div class="copyrights"> and making in not display.

    • You can make a child theme of your current active theme (parent theme). This way you can edit out the files that you need to but when an update is available for the parent theme you don’t lose your edits. This is great if you are making multiple changes to the theme and need to edit lots of files.

      To make a child theme I would read the Child Theme codex article and follow its instructions.

      Once you make the child theme you can either add the CSS code into the style.css of the child theme or copy the footer.php file over to the child theme and delete lines 30 to 35.

    Let me know if this helps.

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    I do appreciate your efforts and the gift that you give to the community. Honest, I am in awe of the software coders who give of their time and effort to give WordPress users such great code in plugins and themes.

    That said, this is all GPL’ed software and this message in the theme is borderline misleading to users.

    https://themes.trac.wordpress.org/browser/maskitto-light/2.0.8/footer.php#L36

    <?php /*
    *
    *  Plaese support theme developers efforts by donation to remove or change copyrights!
    *
    */ $author_website = 'http://shufflehound.com/maskitto-light/'; ?>

    Please notice that I wrote “borderline”. You don’t come out and say that the users can’t remove the links and you do say “please”. But your theme has been downloaded 37,000+ times and your link is in many, many places. That’s not a bad return for your time and that is the reason theme authors are permitted to do that.

    There is nothing wrong with a user editing the link via a child theme and when a user does that then they are leveling up. They’re learning and becoming less dependent on others to manage and maintain their own WordPress site.

    If a user wants to donate to a theme author for any reason, then more power to them.

    But if a user wants to try and create a child theme then a simple way to do that is to create a child theme with these files in it.

    https://codex.wordpress.org/Child_Themes

    First create a directory like so wp-content/themes/maskitto-light-child

    Then in that new directory create a style.css file with these lines in it.

    /*
     Theme Name:   Maskitto Light Child
     Description:  Maskitto Light Child Theme
     Template:     maskitto-light
     Version:      1.0.0
     License:      GNU General Public License v2 or later
     License URI:  http://www.gnu.org/licenses/gpl-2.0.html
    */

    That style.css file is so that WordPress sees the child theme. See the line Template: maskitto-light in it? That’s the part that tells WordPress that you are creating a child theme.

    Also any CSS customization can go here too.

    The second file is functions.php and contains these lines

    <?php
    // Queue up the parent Maskitto Light Child theme style.css file
    // The parent theme CSS is already queued up via the parent
    
    add_action( 'wp_enqueue_scripts', 'child_theme_enqueue_styles' , 15 );
    function child_theme_enqueue_styles() {
        wp_enqueue_style( 'maskitto-light-child-style', get_stylesheet_directory_uri() . '/style.css' );
    }

    This queues up the child theme’s CSS after the parent’s.

    Now copy the file wp-content/themes/maskitto-light/footer.php into wp-content/themes/maskitto-light-child. Just that one footer.php file and nothing else.

    In the copy (and not the original file) edit line 32 from

    <a href="<?php echo $author_website; ?>">Maskitto Light</a> <?php _e( 'WordPress Theme by Shufflehound.', 'maskitto-light' ); ?></span>

    to read something like this

    <a href="http://YOUR-URL-HERE/">Monkeys From Mars</a> <?php _e( 'Monkeys ROCK.', 'maskitto-light' ); ?></span>

    Or use any link or link text you like. I like Monkeys from Mars myself. 😉

    Now in your WordPress dashboard activate that new child theme. If everything was done correctly then you’ll have a child theme activated with the links you want.

    Theme Author shufflehound

    (@shufflehound)

    Maskitto Light already have a child theme, which is available for download in our documentation page (11. Child Theme).

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘About Us Page not Displaying’ is closed to new replies.