luisthegeek
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ColorMag] Show pic in feedHI, @joridye1 The issue is with the way WP handles feeds. but there is a simple plugin you can use to fix this. It worked excellent for me!
once you have it installed and activated, go to the plugin settings and set the “Set the size of feed images” option to “medium” that should work for you.
Forum: Themes and Templates
In reply to: [ColorMag] How To Remove Comment CountsDepends. If you want to remove it from the thumbnails on the home page, then you would go to CUSTOMIZE > ADDITIONAL CSS and enter the following:
.comment-meta { display: none; }
If you want to remove the comment count from the meta line on single posts, then in the same location, enter this:
.comments { display: none; }
Forum: Fixing WordPress
In reply to: Widgets in widget area collapase and will not openthis has been resolved by removing the closing PHP tag
?>
from the functions.php file.Forum: Fixing WordPress
In reply to: Renting products with WordPressIt s possible to do that kind of rental system only with woocommerce custom fields ? How can I do that ? Do you know a website, a tuto or anything else showing it ?
I am not sure how in-depth you want it to be, but with custom fields, you can add a date pickup date field, and set the product as a variable product to rent by the day. Then the customer would choose how many days, and select the date of pickup. that assures that they get charged the right price and when you get the notification of item sold, it will have the date of pickup so you know when to have it ready. You can also add custom fields for any other information you need such as phone number, email address, etc. I am not sure of any tuts or sites currently doing this, just thought it would be a good easy solution.
Forum: Fixing WordPress
In reply to: Featuring guest bloggers without them having access to the site1) A better solution (I don’t want authors to log in).
If you do not want them to log in, try using a plugin such as User Submitted Posts
2) A way to migrate the current solution (18 guest authors) to the better solutio you proposed in 1).
If you want another solution, I would recommend using a plugin such as User Role Editor to allow you to create custom user roles (for example Guest blogger) and give them special permissions restricting them access to everything other than their own posts.
Forum: Fixing WordPress
In reply to: Renting products with WordPressYou can try using woocommerce custom fields.
Forum: Fixing WordPress
In reply to: How to disable product category description in max mega menu plugintry this:
.mega-menu-description { display: none; }
Forum: Themes and Templates
In reply to: [ColorMag] Remove only some page titles1) How can i remove the page title on only certain pages…(not home)
In order to do this, you will need the page ID for each page that you want to remove the title for.
To get the page ID you can use a plugin like this one Reveal IDs
Once you have the page IDs for each page, you will want to go to Customize > Additional CSS and add the following code for EACH page.
.post-XX .entry-title { display: none; }
*be sure to replace XX with the page ID
2)I used the code below to remove the title bar from the home page, However, there is still a very thin white line between the menu and my header image… please advise!
To determine what you need to do here, it depends on your header settings. please post a link to your site or tell us what you have marked under Customize > Header Options > Main Header Position
- This reply was modified 7 years ago by luisthegeek.
Forum: Themes and Templates
In reply to: [ColorMag] Setting new ‘Home’ Page in colormagTo clarify, are you using a static page? The ColorMag theme is designed to work without a static page.
If you want to design your own homepage using VC, you will need to create a new home page, name it “home” or “homepage” or anything you would like.
Then go to Dashboard > Settings > Reading and change the home page setting to “A static Page” and in the “Homepage” dropdown menu below it, select the page you created for you home page.
If you have done this and it still does not work, be sure to purge any caching plugins, or re-save permalinks.
Forum: Themes and Templates
In reply to: [ColorMag] Can’t change background colorIf you are using wide layout it will not show a background color. The background color will only work with Boxed layout.
Forum: Themes and Templates
In reply to: [ColorMag] Images are not lining up along with their headingsI just took a look at your pages and it seems that the H4 text fo the post titles on that page is set to center align. Are those pages actual pages or archives?
Nevermind. I resolved the issue using div attributes.
<tr> <td> #_12HSTARTTIME </td> <td> <div style="float:left; margin:20px 15px 0px 0px;">#_EVENTIMAGE{150,0}</div> <p style="font-weight: bold;"></p> <a href="#_EVENTPAGEURL" style="text-decoration:underline;"> #_NAME </a> </p> #_EVENTEXCERPT{15,...}<br/> <a href="#_EVENTPAGEURL">Read more ...</a><br/> </td> </tr>
OK. So I edited the event list placeholders and format, and i am able to get the image to show, but it is not aligned properly.
Forum: Plugins
In reply to: Buy/Sell/Trade Plugin?@jbpalmr the only thing I was able to find was this https://codecanyon.net/item/woocommerce-product-tradein/17009553?s_rank=3 Seems like it would work. My project has been put on hold for a while and I haven’t gotten around to doing it yet. Hopefully soon I will.
- This reply was modified 7 years, 4 months ago by luisthegeek.
@dualcube I am sorry, I forgot to update. I discovered the problem. The form will not show unless “Mange Stock” is enabled. I was just setting the main option for “Out of Stock” It is all working beautifully now! Thanks!