Forum Replies Created
-
AuthorPosts
-
orbiterred
MemberTHANKS! All good 🙂
orbiterred
Memberalso, when i turn off FORCE SSL CHECKOUT in woocommerce, things start to work again. Do/Could I have something config'd wrong in my genesis child theme that isn't allowing it to load JS over HTTPS?
orbiterred
MemberThanks for the insight guys.
Christoph, any idea how to fix these? It looks like woocommerce page is loading https but the plugin is trying to pull from non https? But it works fine when I don't use the genesis theme so it must be something to do with genesis right?
orbiterred
MemberThanks Allie49!
And thanks for the feedback Adrian, definitely something to consider. To me it ties everything together nicely, but I can see your point as well. Something to think about in our next iteration.
Cheers,
Rob
orbiterred
MemberThanks!
orbiterred
MemberI think you'll have much better luck if we could see the site in question. What you're asking is too vague without being able to see it.
orbiterred
MemberThere is a class of 'alignnone' on the link for the image which is giving it no alignment.
Try this in your css:
.entry-image.attachment-post {
float: left;
padding-right: 20px;
}should give you what you're looking for I think.
orbiterred
Memberprobably messed up due to your monitor size, I haven't done a lot of the media queries yet.
I don't want to float specific widgets.
Display:inline-block works fine for the testimonials above, and it's a far cleaner solution than floating, padding etc... would like to know why it doesn't behave the same for the bottom three widgets.
orbiterred
MemberSeems so obvious once I see it 🙂
Thanks!!!
orbiterred
Memberhow about if I want to add 3 different widgetized areas? into mydiv
orbiterred
MemberSorry, poor example.
I'm trying to call a widget inside of the function.
I've registered the widget:
genesis_register_sidebar( array(
'id' => 'testimonialwidget1',
'name' => __( 'Testimonial Widget 1', 'themename' ),
'description' => __( 'Use this widget area to add and remove testimonials from main page', 'themename' ),
) );function testimonial_widget_1() {
genesis_widget_area( 'testimonialwidget1', array(
'before' => '<div class="testimonialwidget1">',
'after' => '</div>',
));
}add_action ( ‘genesis_before_footer’, ‘sample_action’ );
function sample_action() {
echo ‘<div class=”mydiv”>’;
add_action( ‘genesis_before_footer’, ‘testimonial_widget_1’ );
echo ‘</div>’;
}
Widget area shows up in the wp-admin but is not showing on the site.
Sorry if this is a bit muddy, been up too long.
-
AuthorPosts