Change copyright text on the footer section [closed]

It all depends on the theme. Some themes require you to modify one of their files (specifically, the footer.php file, usually) to remove the text. If you go this route, you’d want to create/use a Child Theme so that a theme update doesn’t overwrite your changes. Copy your theme’s footer.php into your Child Theme folder, … Read more

How to put single-***.php in a specific folder?

Changing how WordPress loads files can be very difficult and potentially destroy logic other plugins rely on. Instead, I usually make use of get_template_part() in this case like so single.php <?php get_template_part(‘singles/single’, get_post_type()); And your files like singles/single-foo.php (for CPT foo) singles/single-bar.php (for CPT bar) singles/single.php (this is the default)

i would like to have 3 default columns editable in guttenberg

So first of all this is explained in detail in the documentation, just not exactly for this particular case. To summarize: You want to set a “block template” for the post type “page”. In this block template you want to have one columns block with 3 column blocks inside with widths of 25%, 50% and … Read more

How to install themes with the demo content?

That depends entirely on the theme provider. They should give you an XML file that you use to import the test data. Or you use the theme test content. It features some edge cases, like very long category names, and all possible formatting options, like table, <pre>, nested lists, and so on.

Creating custom meta box throws PHP warning error in WordPress

Because the third parameter/argument in the add_meta_box function expects a callback function name, which in your case as you have supplied is homepage_meta_box_display. However you still haven’t defined that function yet. The callback function is basically used to output the meta box content, anything that you would like to show up in the metabox you … Read more

Need to edit themes HTML code

Can you search the theme source code for the CSS class that is used for the cart icon (“aux-shopping-basket” or “aux-phone-off” or “aux-action-on-click”)? Then you could create a child theme and copy the original file and then edit the copied file to fix the error. What is the fix?