ryanITLab
Forum Replies Created
-
Let me describe the situation a little bit better.
I have been digging into the plugin and the database, and I think I understand it better now.Here is the situation:
Our blog was written in English.
We have a product that will be launching in a few weeks, and we want international support.
There are some words and phrases in English that will translate 2 different ways depending on context.
But, if the phase has already been translated once, it will translate across all the pages.
If I try and edit the translation on another page – it will replace the previous translation on all pages.Is there a way I can wrap these words and phrases in special <span>s so that they will translate one way on one page, or another way on another page?
Forum: Fixing WordPress
In reply to: Hide sidebar content if page is password protected?@kahil – thanks dude – you are a life saver!!
This is exactly what I needed and it worked right away – saved me a bunch of time
Thanks for the quick response!
I’ve been checking this forum a lot and see that you try to answer most, if not all questions – very good!
I’ve been poking around here too — http://jungle.mailchimp.com/forum/
But I didn’t know about the google code forum! So thanks again for that!yeah – I want to either construct my own call with my own parameters- or just use PHP to force one of mailchimp’s function calls with parameters I supply.
I will check out those sites and see if I can dig up something.
This is the function I am still trying to play around with:
mailchimpSF_signup_submit()
If you find something on one of the mailchimp forums, can you pass along the link?I’m going through the code – It looks like I can call mailchimpSF_signup_submit() by myself whenever I want – but what are the correct parameters?
I want something like this
1) User uses my email form
2) The email is validated using my own script and does what i want it to do.
3) I call mailchimpSF_signup_submit($validemail, $api, $list)
4) My script does what it does
5) Email address is saved and goes to Mail chimp
6)?????
7) ProfitSavy?
How do?
Forum: Plugins
In reply to: Custom Post Types and Permalink VariablesThis works. I’ll just leave this here. This has now been resolved.
function add_my_var($public_query_vars) { $public_query_vars[] = 'cdid'; // contest ID $public_query_vars[] = 'cai'; // Affiliate $public_query_vars[] = 'cas'; // Affiliate Source return $public_query_vars; } add_filter('query_vars', 'add_my_var'); function do_rewrite() { add_rewrite_rule('CD/[/]?([^/]*)[/]?([^/]*)[/]?([^/]*)$', 'index.php?contestdomination=$matches[1]&cai=$matches[2]&cas=$matches[3]','top'); } add_action('init', 'do_rewrite');Forum: Plugins
In reply to: Custom Post Types and Permalink VariablesOK – this plugin is really helpful for understanding the permalink structure!
http://www.askapache.com/wordpress/rewriterule-viewer-plugin.html#aadlThere is a typo in the shortcode – answer is here
http://ww.wp.xz.cn/support/topic/plugin-wp-user-frontend-shortcode?replies=2@nielsdv – NICE!! thanks – that totally works!!!
I’m just getting the short codes written out
same problem
I am trying to do this exact same thing – did you ever get the problem solved??
Forum: Fixing WordPress
In reply to: Social network front end with WP backendOh yeah!!! buddypress is awesome!
Thank you much @cubecolour for pointing to it!Forum: Fixing WordPress
In reply to: Social network front end with WP backendThanks! I’ll check it out now