vusisindane
Forum Replies Created
-
Hello again. I created the additional profile fields in a seperate group [not ideal], and now I get the option to add to checkout. But when I tested with purchasing a new product, the data I entered on the checkout page was not captured on the custom profile field that I created. 🙁
Don’t know if I’m doing something wrong or if this is buggy. Please let me know. thanks.
- This reply was modified 6 years, 6 months ago by vusisindane.
Aahh, finally! This is definitely the solution. Thank you very much. WC should include this in the payfast plugin
- This reply was modified 6 years, 7 months ago by vusisindane.
Forum: Plugins
In reply to: [Direct Checkout for WooCommerce] Clean cart before buying new productI have the same issue. I’m going to look under the hood and see if I can fix this myself…
Forum: Plugins
In reply to: Activated users not showing in buddypress membersBut how do I make them appear without the user logging in? Which field in the database is populated?
Forum: Plugins
In reply to: [TubePress] [Plugin: TubePress] short code not working ???this plugin is very inconsistent. I had the same problem but after I removed the
theme="sidebar"argument, it started working again.By the looks of things you don’t even have that argument in your shortcode but that’s what fixed it for me.
Forum: Plugins
In reply to: [TubePress] [Plugin: TubePress] template taghave you figured this out yet?
Forum: Plugins
In reply to: Get Widget Titles from active widgetshi.
have you figured this out?Forum: Fixing WordPress
In reply to: Anchor link issue (WordPress adds website address before #)This is how I fixed mine. Sort of a combination of some of the solutions here. 1. I added a space before my # like 1 of the users suggested here, but my jquery was still not firing. So I wrote a simple jquery script that trims my hrefs and replaces the original with the new trimmed…
/*hack for the google analytics for wp*/ var ref = jQuery.trim(jQuery('a.gahack').attr('href')); jQuery('a.gahack').attr('href', ref);In the example above I just focused on 1 link (selector).
I hope this helps
interesting…
but that too should be fixed isn’t it? It shouldn’t be case sensitive… its a search engine for crying in the bucket…but thanks anyway
Will see if it solves my problem as well…Forum: Plugins
In reply to: [Auto Featured Image] [Plugin: Auto Featured Image] Alter thumb sizes?Am looking into the code and seeing if I can hack it….
this really sucks! All my images are scaled to 500px (width) and I want my thumbnail to b 540px… NOT COOL!Forum: Plugins
In reply to: [WP Voting] [Plugin: WP Voting] Post RankingThanks.
Will definitely check it out.Forum: Fixing WordPress
In reply to: (search everything) – custom taxonomy tagsOkay, I think i’m making some progress.
the ON Clause (i think its produced in line 762) seems to join an empty taxonomy table. Which subsequently joins an empty terms table
My investigations suggest that this problem is what’s causing the query from return terms (in custom taxonomies).
For now, I just replaced line 760 with
$on = '';and also removed the AND beforetrel.term_taxonomy_id = ttax.term_taxonomy_id)on line 763 and it worked like a charm.the problem now, is that if my search term is more than 1 work it doesn’t return any values… but that’s for another post I suppose
Forum: Fixing WordPress
In reply to: (search everything) – custom taxonomy tagsHi there, this doesn’t seem to be working for me.
I’m still not getting results for custom taxonomies. please help…Forum: Plugins
In reply to: [WP Voting] [Plugin: WP Voting] Post Ranking1. you must paste that code I gave you in your functions.php
2. in your template (or in your loop) you can call that function i.e.<?php echo b1_get_post_rank($post) ?>It should return an int (number), that number is the rank of the post. One thing though, just make sure the $post is actually a valid variable. if $post is null, then it won’t work. one way to get the post is to use
<?php global $post; ?>(provided wordpress has declared it)Forum: Plugins
In reply to: [WP Voting] [Plugin: WP Voting] Post RankingFeel free to improve it and let me know (and let the plugin author know) if you do.