Mateo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Looking for the Plugin that simply deletes all productsAt the moment i was answering, i got your reply, i’m glad you were able to solve your problem!!
Regards
- This reply was modified 5 years, 3 months ago by Mateo.
Forum: Fixing WordPress
In reply to: Right side bar back groundHi @daniyal727!
Try pasting this code in Appearance> Customize> Add CSS, and change the value “red” to any color you choose.div#right-sidebar { background-color: red; }Regards!!
Forum: Fixing WordPress
In reply to: Looking for the Plugin that simply deletes all productsIn that case, you could remove all WooCommerce products from the database via SQL, but it is risky and can damage your site.
But i found this plugin called “Woo Product Remover” and i tested. It allows you to remove all woocommerce products from your site and database via single click.
Test it and let me know if it works for you!!
- This reply was modified 5 years, 3 months ago by Mateo.
Forum: Fixing WordPress
In reply to: Looking for the Plugin that simply deletes all productsHi @netdiscs!!
If you don’t have thousands of products, you can click on “Screen Options” on the Products page and set the number of items per page to 100-200 products per page. After that you can manually click on all products checkbox > Bulk Actions > Move to Trash.
Also you can do it with Smart Manager plugin, wich allows you managing products to bulk editing them – add / delete / update.
With the free version you can move them to trash upto 50 records at a time.
There is a pro version that give you the permanent delete functionality.Let me know if it works for you.
Regards!!Forum: Themes and Templates
In reply to: [Twenty Eleven] How to reduce the width of page margin?You forgot to add this code:
h2#site-description, h1#site-title span a { color: white; }This is for the text color, you can change “white” to another color.
When you say “lower page”, do you refer the block that says “Proudly powered by WordPress”?
- This reply was modified 5 years, 3 months ago by Mateo.
Forum: Themes and Templates
In reply to: [Twenty Eleven] How to reduce the width of page margin?Hi @satimis02!
For the widht , try pasting this code in Appearance> Customize> Add CSS.
div#page { max-width: 100%; } .singular .entry-content { width: 100%; }For the color of the top portion of the page, put in the same place the next code.
This is for the background, you can change “black” to another color.
header#branding { background: black; }This is for the text color, you can change “white” to another color.
h2#site-description, h1#site-title span a { color: white; }Keep in touch!
Forum: Fixing WordPress
In reply to: Blog Covering Header on Blog PageIf you go to this URL, https://njbrainhealth.com/category/blog/ , you should see the title of the Blog category. What happens in the following url https://njbrainhealth.com/blog/, is that there is no title block that says “Blog”. What you would have to do is enter to edit the page that does not have a title and add one to it.
If that doesn’t works you can change the Blog menu item to a Category called Blog or a custom link with this url: /category/blog/ .Any questions let me know!
Forum: Fixing WordPress
In reply to: Blog Covering Header on Blog PageHey, sure!
Put this code in the same place i told you before: Appearance> Customize> Add CSS. It should solve your issue..category-blog h1.page-title.ast-archive-title { margin-top: 3.5em; }Regards!!
Forum: Everything else WordPress
In reply to: way to flag posts, then list all the flagged post ?Hey! I forgot to tell you that in Dashboard > Home, you have Mark Post widget to list all markers of one kind.
Forum: Everything else WordPress
In reply to: way to flag posts, then list all the flagged post ?Hello again @freelylw !
There’s not a plugin what do both things, mark posts only for the admins and display in the front end the marked posts, but i can suggest you a way to doit.
To mark or flag posts only visible for the admin, you can do it with “Mark Posts” plugin. This allows you to create your own marker names with his colors, and then in posts simply touch in quick edit and set Marker to you created category. Here are a couple of images explaining it.
To display the selected posts in a page for example, you can create a category, add in the marked posts, and display in a page in the way you prefer, this article shows you various methods to do it. If you want to hide from wordpress search the category, you can do it with “Ultimate Category Excluder” plugin, here´s an image showing how to do it.Keep in touch!
- This reply was modified 5 years, 3 months ago by Mateo.
Forum: Fixing WordPress
In reply to: Spacing in Blog different from PostHi again, i was looking and there seems to be an empty paragraph block after the titles of some posts. Enter the edition of each post and if they are there delete them.
The styles of the titles and paragraphs, you would have to tell me what you want.Keep in touch!
Forum: Fixing WordPress
In reply to: Blog Covering Header on Blog PageIn the WP dashboard, go to Appearance > Customize > Add CSS. Paste the code i shared you and click on publish.
Also this video explains how to do it.Regards!
- This reply was modified 5 years, 3 months ago by Mateo.
Forum: Everything else WordPress
In reply to: Plugin tipo Search MeterYou’re welcome!
Forum: Fixing WordPress
In reply to: Blog Covering Header on Blog PageForum: Fixing WordPress
In reply to: Spacing in Blog different from PostTo reduce the space between the paragraphs you will change the value of this code to a lower value:
div#page p {
line-height: 23 px;
margin-bottom: value px;
}To change the sizing and spacing of pages titles, headings and paragraphs is so specific code, so im gonna take a look and share it with you.