Sean Davis
Forum Replies Created
-
Hi there,
It sounds like what you actually need is our EDD extension called Frontend Submissions. It allows “vendors” to submit information from the front-end that creates a Download item on the back-end. Please have a look here: https://easydigitaldownloads.com/downloads/frontend-submissions/
Please check it out and let me know if it meets your needs.
I’m sorry for the long delay here. I can’t replicate the issue myself in my test environment. Do you get the same behavior after temporarily deactivating all other plugins besides SCC and SCC – Front Display?
Forum: Plugins
In reply to: [Simple Course Creator] Feature request – Mark posts in a course as completeHi Arnold,
I’m really sorry for the long delay here. Unfortunately, that’s not possible at the time because SCC does not concern itself with user accounts. It could be done with browser cookies but it would only be temporary until the visitor cleared them. The only logical way to do this would be to track it by actual user so the information is never wiped clean and SCC is just not that complex of a plugin at this time. Sorry.
Forum: Plugins
In reply to: [Simple Course Creator] Course creator for pagesI’m not sure how I missed this. I apologize. Unfortunately, no. Simple course creator only works for posts.
Forum: Plugins
In reply to: [Simple Course Creator] Change "course" to "series?"Hi there. Sorry for the really long delay. It can be done but it would take some custom development. Instead of going that route, maybe it’s something I can improve in the code to be more flexible so you can easily make changes that don’t require much custom code at all. I’ll try to get that done for the next update.
Forum: Themes and Templates
In reply to: CSS in shortcode overriding page CSSGlad I could help!
Forum: Themes and Templates
In reply to: CSS in shortcode overriding page CSSAdding this to your child theme stylesheet or custom CSS plugin should do the trick:
#menu-primary-items > li { list-style: none; }Forum: Themes and Templates
In reply to: [Minamaze] Reduce space between header image and navigation menuHi there. Try adding this to your child theme stylesheet or custom CSS plugin:
div#logo { display: none; }Also note that your header image itself seems to have a lot of white space around it for some reason. Here it is on a page with a gray background: http://glui.me/?i=nelkmjvotgklegp/2015-07-09_at_3.55_PM.png/
You’ll need to edit that image to remove the white spacing.
Forum: Themes and Templates
In reply to: CSS in shortcode overriding page CSSCan you link to your site and point out the exactly problem areas? If it’s just a CSS issue, I should be able to help.
Forum: Themes and Templates
In reply to: Issues with Menu on Mobile Devices -OneToneHi there. Unfortunately, it appears that the theme was actually built this way. It’s not a conflict. By default, menu items will not line themselves up in any special way. CSS must be written to configure how they will display for smaller screen sizes. What’s going on here is simply that the theme does not go very far with the styling.
You’d need custom development to change this behavior.
Forum: Themes and Templates
In reply to: [Stained Glass] Top Nav Menu ColorAdd this to your child theme stylesheet or custom CSS plugin:
.menu-top .top-navigation .horisontal-navigation li a { color: #999; }That should darken it up for you and you can adjust the color value even more if necessary.
Forum: Themes and Templates
In reply to: Newbie : Enqueue stylesheet.Hi there. I can try to help here as I am fairly new to WordPress development myself but have experience teaching some of the more basic WordPress things.
The first thing to note is that while WordPress may recognize certain files automatically, that doesn’t mean they are required. WordPress just knows to look for certain file names and if they exist, do something with them. If they don’t exist, keep on moving. You’ll see a lot of that in the WordPress Template Hierarchy. https://developer.wordpress.org/themes/basics/template-hierarchy/
Your function hooked into wp_enqueue_scripts actually looks good so I can’t see any reason why it wouldn’t work. You don’t see the stylesheet referenced in your header at all with that code? Even after clearing your cache?
I feel like the best place to start with theming in WordPress is the Underscores starter theme. It’s nothing to look at but its structure is everything. I built a free course that helps developers understand WordPress theming and I used Underscores in all of my examples. I’m not sure if I am supposed to post links here but I’m genuinely trying to help. Here’s the course. http://buildwpyourself.com/topic/how-to-build-a-wordpress-theme/
I would highly suggest learning WP theming by tweaks before creating. Creating everything in a theme from scratch would be a waste of time in my opinion as many of the templates are almost identical and many of the functions will be the same each time you build a theme. Underscores is based very closely on the default WordPress themes and when you can see it all in action “properly,” you should be able to get a much faster understanding.
You can use CSS to style the footer area. In your theme’s custom CSS panel, use the following:
footer.footer-top { background-color: #f2f2f2; }For the footer text, you have to hook into the footer to add your custom text. In your *child* theme functions.php or custom plugin (try Pluginception), use the following:
function custom_footer_text() { ?> <span>This is text.</span> <?php } add_action( 'bp_footer_left', 'custom_footer_text' );Forum: Themes and Templates
In reply to: Virtue Theme – Sidebar color changeHi there. Go to the Advanced Settings section of the Theme Options and in the custom CSS area, paste the following:
.kad-sidebar { background-color: #f2f2f2; }Adjust as needed.
Hi Deyson,
This is probably best done with a full template override of the [download_history] shortcode. For information how to do the overrides, watch this short video: https://easydigitaldownloads.com/videos/template-files/
With your theme template override in place for the “history-downloads.php” file, you can make edits there to add the download’s thumbnail to the table data (td) that holds the product name. The following PHP will output the thumbnail for you with dimensions of 40px by 40px:
<?php echo get_the_post_thumbnail( $download['id'], array( 40, 40 ) ); ?>