Forum Replies Created
-
Would you know what could possibly be done to get this to work?
Would you know what it could be at this point?
Ok, so I got the login fixed, I am no longer using simplr registration, I am now using WP User Control which seems to work fine.
I am now just getting the error “There are currently no items in your shopping cart.” I am using my child theme and getting this error and the unedited 1.6.2 theme and receiving the same error. When I switch to Twenty Eleven theme I do not get this error. I did all this with plugins activated and not activated, makes no difference.
Would you know what it could be at this point?
oh jeez, haha. I did disable all the plugins to test the shop and that didnt solve the problem. But now that there is a registration problem I am unaware of I will also try to look into that. But that may be more difficult than I expected, if I disable simplr registration, then I need to redirect the people (or me temporarily) to the default wordpress registration, which doesn’t give them the option to create a username, first and last name (unless that has changed with newer versions of WP)
AS for the cart issue, I did notice other people can add multiple items, I however cannot, which must be my particular browser settings or something. I will try to just disable the simplr registration form and give the cart a try again, but I disabled everything before with no luck.
“(Your “meta property=’og:description'” is wonky, btw.) “
I have no idea what that is, I use the SEO by Yoast I think its called so that must be rendering that code.
I am thinking about switching over to woocommerce: http://www.woothemes.com/woocommerce/ since I am having terrible luck with this shopplugin, I am pretty sure that will also not be compatible with this current theme, but I think I may just resort to using a child theme just for the store. Have you heard of this plugina and know if it is any good?
I will get to these issues tomorrow. Thanks for your help and patience.
ok try it now.
The goal is not to stop them, it is to make it more difficult. I can still save images without having right click abilities but some people may not know how to do that, including the person I build this site for.
Anyone having similar issues?
worked like a charm thanks.
If I use footer display none then it completely removes the footer, I just don’t want the footer to be displayed in excerpts.
Here is the code to relocate my thumbnail:
<?php if (is_single() || is_page()) : ?>
<?php elseif (!(is_page() || is_single())): ?>
<?php /* The post thumbnail */<br />
if (has_post_thumbnail(get_the_ID())) { ?>
<div class="excerpt-thumb">
<a>" rel="bookmark" title="<?php printf(esc_attr__('Permalink to %s', 'graphene'), the_title_attribute('echo=0')); ?>">
<?php the_post_thumbnail(apply_filters('graphene_excerpt_thumbnail_size', 'thumbnail')); ?>
</a>
</div>
<?php<br />
} else {
echo graphene_get_post_image(get_the_ID(), apply_filters('graphene_excerpt_thumbnail_size', 'thumbnail'), 'excerpt');<br />
} ?><br />
<?php endif; ?>Here is the code to create the new div:
<?php if (is_single() || is_page()) : ?>
<?php elseif (!(is_single() || is_page())) : ?>
<div class="excerpt-post">
<?php endif; ?>Here is the code to remove the wp_link_pages():
<?php if (is_single() || is_page()) : ?>
<?php wp_link_pages( array( 'before' => '<div class="link-pages"><p><strong>' . __( 'Pages:','graphene' ) . '</strong> ', 'after' => '</p></div>', 'next_or_number' => 'number' ) ); ?>
<?php elseif (!(is_page() || is_single())): ?>
<?php endif ; ?>The code to remove the footer:
<?php if (is_single() || is_page()) : ?>
<div class="entry-footer clearfix">
.....footer code.....
</div>
<?php elseif (!(is_page() || is_single())): ?></p>
<?php endif; ?>Then lastly, close my new div:
<?php if (is_single() || is_page()) : ?>
<?php elseif (!(is_single() || is_page())) : ?>
</div>
<?php endif; ?><p>That is all I modified for the loop. So if I remove the loop from my child-theme I will lose the way I have it setup. I like the way it is setup right now because it takes up lest space on the page, therefore people dont have to scroll so far to reach the bottom.
Yes, I don’t quit understand how to properly create a child theme. The is the only thing I did when it comes to modifying the loop.
Basically moved this code from its original place and put it at the top and added the if statement. Im no PHP guru so don’t judge haha.
<?php if (is_single() || is_page()) : ?>
<?php elseif (!(is_page() || is_single())): ?>
<?php /* The post thumbnail */
if (has_post_thumbnail(get_the_ID())) { ?>
<div class="excerpt-thumb">
<a>" rel="bookmark" title="<?php printf(esc_attr__('Permalink to %s', 'graphene'), the_title_attribute('echo=0')); ?>">
<?php the_post_thumbnail(apply_filters('graphene_excerpt_thumbnail_size', 'thumbnail')); ?>
</a>
</div>
<?php
} else {
echo graphene_get_post_image(get_the_ID(), apply_filters('graphene_excerpt_thumbnail_size', 'thumbnail'), 'excerpt');
}
?>
<?php endif; ?>The rest is unaltered other than a similar statement to remove the footer and the links page and I think that is all.
Sorry I cannot figure out how to put code in a post.
Does anyone know why the text doesn’t show up?
