Forum Replies Created
-
AuthorPosts
-
August 11, 2015 at 1:48 pm in reply to: single posts not displaying content on social network #162068
black9design
MemberI found the problem...seems I had to delete a profanity filter before the issue would go away.
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comAugust 11, 2015 at 11:58 am in reply to: single posts not displaying content on social network #162047black9design
Memberlocation to see the post issues is at http://anapbc.com/chit-chat...
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comAugust 11, 2015 at 11:48 am in reply to: single posts not displaying content on social network #162044black9design
Memberwhat is strange is that old comments and post content displays but anything new does not.
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
MemberYou can follow this tutorial to set up your own:
or, you can follow this one:
https://llamapress.com/create-filterable-portfolio-in-genesis/
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
MemberMade updates to pricing and other content...created custom pricing colors and code.
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
MemberI made a few more updates on colors...waiting for content to make more changes...
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
MemberPavle...a lot of the content and pricing info will be updated shortly. That was day one and I still need real content from customer. Davinder Sing...thanks a lot.
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
Membertake a look at a few of the updates I made. This website is currently at about 6 hours of design work so far.
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
Memberthat is gorgeous man...
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
Memberhope that helps you.
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
MemberYou can add the following to your styles.css. make sure to replace .class_name with the name of the section you will be putting the widgets into such as footer-widgets, or home-top, or home-middle etc.
This will display the widgets side by side.
.class_name .widget {
float: left;
padding: 0 2.8%;
width: 50%;
}.class_name .widget:nth-of-type(2n+1) {
clear: left;
}
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
Memberplease contact me via my website and we will discuss.
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
MemberYou may want to shorten your site title. I looked at it and it's very long. As well as the site description.
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
MemberYou will want to add the following in your functions.php file.
genesis_register_sidebar( array(
'id' => 'custom-widget',
'name' => __( 'Custom Widget', 'genesis' ),
'description' => __( 'Custom Widget Area', 'themename' ),
) );add_action( 'genesis_before_entry', 'add_genesis_widget_area', );
function add_genesis_widget_area() {
genesis_widget_area( 'custom-widget', array(
'before' => '<div class="widget-class">',
'after' => '</div>',
) );}
You can then add custom styles to .widget-class or rename to your liking
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
MemberI created a small tutorial about the after entry widget area.
http://allthingsgenesis.com/include-generate-pro-enews-widget-styling-website/
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
Memberset position: absolute on .free-banner
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
Membercool.
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
Memberto exclude categories from your homepage loop follow this tutorial
http://allthingsgenesis.com/exclude-categories-displaying-homepage-loop/
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
MemberTo exclude categories from your recent posts follow this tutorial
http://allthingsgenesis.com/add-exclude-options-recent-posts-widget/
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.comblack9design
Memberif you are getting the white screen it means you deleted extra code or did not delete all of your custom code. You can change out the functions.php file with the default code and the screen should come back just fine.
I am not sure why this isn't working for you but I can create add the custom code I provided just fine and I have a recent posts widget with exclude options.
as for your exclude category from the homepage, you need to modify the numbers for your category id
<?php
function excludeCat($query) {
if ( $query->is_home ) {
$query->set('cat', '-3,-5,-23');
}
return $query;
}
add_filter('pre_get_posts', 'excludeCat');
?>change the -3, -5, -23 to the categories you want to change.
I specialize in child theme customizations and The Dynamik Website Builder
Visit me here: Black9Design.com | ParkerWadeSmith.com | AllThingsGenesis.com -
AuthorPosts