IntownWebPros
Forum Replies Created
-
Yes, my language is US English. I added that line to my wp-config and uploaded those files to the beans language folder but I am still seeing the old format on my product pages. (example here)
I must have missed something or done something wrong? I added the define line immediately before “That’s all, stop editing!” Should it be somewhere else? Is there anywhere else that I need to set US US?
Thank you so much for your help. I really appreciate it.
Oh _beans you greatly overestimate my programming knowledge and/or experience. Lol. I do not know how to use translation files. Can you recommend some sort of step-by-step tutorial that would explain exactly how I accomplish this?
I know the span class amount is from woocommerce, that’s why I don’t think you should use the span class amount to format any of your content. You use your own span class beans-unit to format beans amounts so why wouldn’t you use your own span class to format the dollar amount that a certain number of beans is equal to?
Found some code over here that worked for me.
I had been using this to change the size of the Woocommerce price:
.amount { font-size: 40px;Instead I am now using this code:
.woocommerce div.product span.price, .woocommerce div.product p.price, .woocommerce #content div.product span.price, .woocommerce #content div.product p.price, .woocommerce-page div.product span.price, .woocommerce-page div.product p.price, .woocommerce-page #content div.product span.price, .woocommerce-page #content div.product p.price { font-size: 40px; }The new code does not effect the Beans price.
I would still suggest that in a future update to the Beans plugin the Beans amount be changed from span class amount to span class beans-amount. For a novice programmer like myself, I think that would make things easier. When I was trying to figure out how to make my changes I just used the Chrome Inspect Element option and found the amount class to change. I think other people might take the same approach and end up in the same situation I was in. Changing the Beans code to beans-amount would fix that.
Thanks for the great plugin!
Got it, thanks.
Oh sheesh! Thanks!
Same problem here. Is there somewhere in the UI that I can specify what to include and what to exclude? I can’t exactly re-locate the large files from my live site. :/ Would love to try this plugin out but can’t really unless the UI allows me to include/exclude.
Forum: Plugins
In reply to: Featured Post from other blog on Multi-siteI’m interested in this as well.
Forum: Fixing WordPress
In reply to: How to display specific custom post type in RSS feedI am in the same boat here.
I am trying to get a feed of my custom post type “auction.” I go to this link: http://uniimi.com/feed/?post_type=auction and it is not a feed, it is the full content of the most recent post.
If you look at http://uniimi.com/custom you can see that there are more than one posts of this type.
Any thoughts?
Forum: Themes and Templates
In reply to: wp_list_pages – show date before page titleI, too, am looking to move the date to the left of the title. Any ideas? My code is:
<ul> <?php wp_list_pages('show_date=created&child_of=1357&title_li='); ?> </ul>Forum: Fixing WordPress
In reply to: “wp-comments-post.php” gets a blank screenOK. Here is my code change:
I added comment_author_year in two places:
$result = $wpdb->query( $wpdb->prepare("INSERT INTO $wpdb->comments
(comment_post_ID, comment_author, comment_author_email, comment_author_url, comment_author_IP, comment_date, comment_date_gmt, comment_content, comment_approved, comment_agent, comment_type, comment_parent, user_id, comment_author_year)
VALUES (%d, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %d, %d)",
$comment_post_ID, $comment_author, $comment_author_email, $comment_author_url, $comment_author_IP, $comment_date, $comment_date_gmt, $comment_content, $comment_approved, $comment_agent, $comment_type, $comment_parent, $user_id, $comment_author_year) );Now I get the blank screen. I also changed wp-comments-post.php and comments.php but they did not cause the error. I have tried swapping out fresh versions of all three files and the only time I get the issue is when I change comment.php.
Any ideas?
Forum: Fixing WordPress
In reply to: “wp-comments-post.php” gets a blank screenI’m having the same problem. I’ve spent the entire day searching for an answer. Everywhere I looked said it’s an Askimet issue but I have not installed Askimet.
I have figured out that whenever I try to change comment.php, I get the blank screen issue. It’s not an issue with wp-comments-post.php or comment.php. I can’t post the URL here. I will post the code that I changed tomorrow.