Forum Replies Created
-
AuthorPosts
-
webnetimages
Participantwebnetimages
ParticipantHi;
Built in a news pro theme
Sharing a post in facebook, the title (og:title) is also insert in to the description (og:description).So the title appears 2 times when sharin on facebook
Regards
webnetimages
ParticipantRegards!!!
webnetimages
Participantthanks
solution making a widget front the image…. and using string trnaslation…web:
http://marbellamaintenance.comRegards.
webnetimages
ParticipantGenesys Grid will be a solution
webnetimages
ParticipantI put:
add_action( 'genesis_before_loop', 'prefix_full_content_specific_categories' ); function prefix_full_content_specific_categories() { $full_categories = array( 'galeria' ); if ( is_category( $full_categories ) ) { add_filter( 'genesis_pre_get_option_content_archive_thumbnail', 'prefix_no_post_image' ); add_filter( 'genesis_pre_get_option_content_archive', 'prefix_do_full_content' ); add_filter( 'genesis_pre_get_option_content_archive_limit', 'prefix_no_content_limit' ); } } /** * Prevent the featured image from being loaded twice. * * @todo change 'prefix' to the theme prefix. */ function prefix_no_post_image() { return '0'; } /** * Set the content archives to full. * * @todo change 'prefix' to the theme prefix. */ function prefix_do_full_content() { return 'full'; } /** * Make sure the content limit isn't set. * * @todo change 'prefix' to the theme prefix. */ function prefix_no_content_limit() { return '0'; }
Is it ok?
in the line:
$full_categories = array( 'galeria' );
how can i specified diferents categories or better: categories numbers?regards
webnetimages
Participantwebnetimages
ParticipantJust added these lines on css;
.post-204 .alignleft {
float: right;
margin-right: 20px;
text-align: left;
}Any sugestion?
webnetimages
Participanthi;
with "Genesis Feature Widget Amplified" works good.
Is not the better solution install more and more plugs...
Something wrong in genesis 2.0 ?
regardswebnetimages
ParticipantI replace the archive on genesis version 2.0: featured-post-widget.php
with the one of the version 1.9
But don´t think is the proper solution!
Can I habe a proper code?
Regardswebnetimages
Participant"Featured Post" works good with genesis 1.9 (but header image don´t work good)
I´m using genesis 2.0.1 and "Featured Post" don´t works good.
See screenshot:
webnetimages
ParticipantIt work on standar screen, but not in mobile witdh!
webnetimages
ParticipantHi, jusf for future updates and some other people like me:
>>>wp-content/themes/genesis/lib/structure/header.php
change:
if ( $canonical )
printf( '<link rel="canonical" href="%s" />' . "\n", esc_url( apply_filters( 'genesis_canonical', $canonical ) ) );by:
if ( ( $canonical ) && (is_string($canonical)) )
printf( '<link rel="canonical" href="%s" />' . "\n", esc_url( apply_filters( 'genesis_canonical', $canonical ) ) );
webnetimages
Participanterror says:
Catchable fatal error: Object of class WP_Error could not be converted to string in /home/kanjea/public_html/wp-includes/formatting.php on line 2583webnetimages
Participanteasy....
regards
webnetimages
ParticipantIt will be for a multisite propuose so use "simple Hooks plugin in all the site will be no succesfull.
Needs to put it in the funcions.php of the child theme
any help?
thanks
-
AuthorPosts