Forum Replies Created
-
AuthorPosts
-
tuAtlasMember
Hi! This is no longer an issue as I discovered in a tutorial in my.syudiopress.com how to create a blog post for a specific category which does the trick!
tuAtlasMemberHi again jhs,
I checked the link you provided and it works fine.
I inspected your
<div class"one-half first greybox">
but on the browser inspection the tag:
<a>
does not show up. Neither do they when inspecting the source code.The only thing that I can suggest is to see if this css rule is afecting your
<a>
tags:button[disabled], html input[disabled] { cursor: default; }
Because you also have this on lines 44, 45 and 46 of source code:
<p><a class="button" href="http://sutterud2.eksaktlidenskap.no/?page_id=73">her finner du oss</a> </p> <p><!--a class="button" href="">butikken</a><br /> <a class="button" href="">verksted</a---> </p>
The css orders "disabled" to the selector "button" and your
<a>
tags have a class called "button"
This rule could be disabling this tag.Check that.
tuAtlasMemberHi jhs,
If I understand your question correctly all you would need to do would be to wrap your div with an tag like so:
<a href="http://wwwYOURTARGETLINK.com"> <div class="one-half first greybox"> <h2>Armbåndsur</h2> <p><img src="http://sutterud2.eksaktlidenskap.no/wp-content/uploads/2014/11/dummy-produktbilde.jpg"><br> Qhjkjh kjh kjh kjh kjh kjh khøhjlkjh jfgdfghdhgfd hgfdhgfd hgfdhgfd hgfd hgfd ghfd hgfd hgfdhfdhgfd hgfd hgfd hgfd ghfd g</p></div> </a>
Obviously you need to change
http://wwwYOUR-TARGET-DESTINATION.com
(YOUR-TARGET-DESTINATION) for the correct target you want to link to.Hopefully I understood your question and this is what you were looking for.
tuAtlasMemberOK. Good resourses to check. I`ll do that.
tuAtlasMemberOk, a different SEO plug in was the problem. I am good now.
Thanks a lot.
tuAtlasMemberOk I think I found the culprit. I had a Genesis Post Teasers plug in and when I deactivated this that “Sorry, no posts matched your criteria” notification desapeared.
Ok, I`ll see what I do with this plug in or if I use it at all.
Thanks for the help.
tuAtlasMemberThanks. I made the change you suggested but the issue remains.
tuAtlasMemberHi Mr. Wright,
It is the only thing I changed there. Here is the code:
<?php /** * This file handles the output on the homepage. */ add_action( 'genesis_after_header', 'enterprise_home_top_helper' ); /** * Conditionally add Home Top #1 (home-top-1) sidebar and WP-Cycle. */ function enterprise_home_top_helper() { echo '<div id="home-top-bg"><div id="home-top"><div class ="wrap">'; if ( is_active_sidebar( 'home-top-1' ) ) { echo '<div class="home-top-1">'; dynamic_sidebar( 'home-top-1' ); echo '</div><!-- end .home-top-1 -->'; } if ( is_active_sidebar( 'home-top-2' ) ) { echo '<div class="home-top-2">'; dynamic_sidebar( 'home-top-2' ); echo '</div><!-- end .home-top-2 -->'; } echo '</div><!-- end .wrap --></div><!-- end #home-top --></div><!-- end #home-top-bg -->'; } add_action( 'genesis_meta', 'enterprise_home_genesis_meta' ); /** * Add widget support for homepage. If no widgets active, display the default loop. * */ function enterprise_home_genesis_meta() { if ( is_active_sidebar( 'home-middle-1' ) || is_active_sidebar( 'home-middle-2' ) || is_active_sidebar( 'home-middle-3' ) ) { remove_action( 'genesis_loop', 'genesis_do_loop' ); add_action( 'genesis_loop', 'enterprise_home_loop_helper' ); add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' ); } } function enterprise_home_loop_helper() { echo '<div id="home-middle">'; if ( is_active_sidebar( 'home-middle-1' ) ) { echo '<div class="home-middle-1">'; dynamic_sidebar( 'home-middle-1' ); echo '</div><!-- end .home-middle-1 -->'; } if ( is_active_sidebar( 'home-middle-2' ) ) { echo '<div class="home-middle-2">'; dynamic_sidebar( 'home-middle-2' ); echo '</div><!-- end .home-middle-2 -->'; } if ( is_active_sidebar( 'home-middle-3' ) ) { echo '<div class="home-middle-3">'; dynamic_sidebar( 'home-middle-3' ); echo '</div><!-- end .home-middle-3 -->'; } echo '</div><!-- end #home-middle -->'; } genesis();
Thanks.
-
AuthorPosts