Forum Replies Created
-
AuthorPosts
-
March 27, 2013 at 12:34 pm in reply to: How do I add another home boxed area in Agency theme? #31578Brad DaltonParticipant
Change the hook location if needed and use the i.d home-main to register the widget.
Sorry but your question needs clarifying.
Brad DaltonParticipantLooks very good. Why did you put it in a sub domain? And what theme did you use?
Brad DaltonParticipantEasier to use CSS code and grab the post/page i.d from the source code for each or create a custom body class.
March 27, 2013 at 12:19 pm in reply to: Problem getting rid of the default header in Education theme #31572Brad DaltonParticipantAt least 3 ways to do this:
1. Using File Manager in cPanel or FTP, go to wp-content > themes > education > images and delete the default logo.
2. Or you can hide it using CSS code on line 253 of your child themes style.css file, change the code to this:
.header-image #title a { background: url("images/logo.png") no-repeat scroll left center transparent; display: none; }
3. Or remove the images/logo.png from the code.
.header-image #title a { background: url("") no-repeat scroll left center transparent; }
Solution 1 and 3 are the easiest.
Brad DaltonParticipantTry looking through this code for a solution: https://gist.github.com/braddalton/5234454
Brad DaltonParticipantPHP generally goes in the child themes functions.php file but not with opening and closing php tags.
These are only needed when pasting PHP code into any of the Genesis hook fields when using the Genesis Simple Hooks plugin.
This is the reason you are getting the errors.
Where did you get this code from?
Brad DaltonParticipantYeah its like that when adding widgets to Prose. The code needs to be added in the lib/init.php file as well and won't work if placed in the functions file.
Brad DaltonParticipantHi.
What do you mean by post signature? I'm sure it can be repositioned using one of these hooks.
genesis_after_post_content
genesis_after_postDo you have the code which you used to add it?
Brad DaltonParticipantJust use one and make the width extend across both using CSS code.
There is no hook that places it above both sidebars.
Brad DaltonParticipantBrad DaltonParticipantI've written the code containing the new hook and will test it using the sidebar - content - sidebar layout.
Brad DaltonParticipantI think i found a hook already in the Genesis core sidebar-alt.php file.
Try these 2:
genesis_before_sidebar_alt_widget_area
genesis_before_sidebar_widget_area
Works?
Brad DaltonParticipantThis one but only for content sidebar layouts. genesis_before_sidebar_widget_area
I guess you already know that?
I'm sure there's a way to add custom hooks in Genesis.
Brad DaltonParticipant3 popular plugins for tracking the native feed stats.
http://wordpress.org/extend/plugins/feedstats-de/
http://wordpress.org/extend/plugins/simple-feed-stats/ Jeff Starr
http://wordpress.org/extend/plugins/wordpress-feed-statistics/
You can access a feed for all categories and tags.
Example:
http://yourdomain.com/category/podcast/feed
or
http://yourdomain.com/tag/podcast/feed
You may want to tag your podcasts and offer a link to that archive for your feed.
Brad DaltonParticipantYou could use the native feed for RSS and Jetpack subscriptions for email.
Brad DaltonParticipantBrad DaltonParticipantThe code i posted above works but you need to add your own category i.d. for the cat you want to exclude.
There's a plugin which you might find useful http://www.studiopress.community/topic/excluding-category-from-grid-loop/#post-29730
Brad DaltonParticipantBrad DaltonParticipantMarch 26, 2013 at 7:08 pm in reply to: Change the 'Join Us Get Fresh Content Now' image (Genesis Generate) #31435Brad DaltonParticipantYou'll find them using FTP to access your server files. Now that you know the image size, you can create a transparent background and layer you image over the top.
-
AuthorPosts