Title: ryanITLab's Replies | WordPress.org

---

# ryanITLab

  [  ](https://wordpress.org/support/users/ryanitlab/)

 *   [Profile](https://wordpress.org/support/users/ryanitlab/)
 *   [Topics Started](https://wordpress.org/support/users/ryanitlab/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ryanitlab/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ryanitlab/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ryanitlab/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ryanitlab/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ryanitlab/favorites/)

 Search replies:

## Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Transposh WordPress Translation] [Plugin: Transposh WordPress Translation] Problems with Chinese translation](https://wordpress.org/support/topic/plugin-transposh-wordpress-translation-problems-with-chinese-translation/)
 *  Thread Starter [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [14 years ago](https://wordpress.org/support/topic/plugin-transposh-wordpress-translation-problems-with-chinese-translation/#post-2771716)
 * 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Hide sidebar content if page is password protected?](https://wordpress.org/support/topic/hide-sidebar-content-if-page-is-password-protected/)
 *  [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/hide-sidebar-content-if-page-is-password-protected/#post-2199196)
 * [@kahil](https://wordpress.org/support/users/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
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mailchimp List Subscribe Form] [Plugin: MailChimp List Subscribe Form] Tie in with Custom Plugin](https://wordpress.org/support/topic/plugin-mailchimp-list-subscribe-form-tie-in-with-custom-plugin/)
 *  Thread Starter [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-mailchimp-list-subscribe-form-tie-in-with-custom-plugin/#post-2515287)
 * [@mc_nate](https://wordpress.org/support/users/mc_nate/)
 * 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/](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?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mailchimp List Subscribe Form] [Plugin: MailChimp List Subscribe Form] Tie in with Custom Plugin](https://wordpress.org/support/topic/plugin-mailchimp-list-subscribe-form-tie-in-with-custom-plugin/)
 *  Thread Starter [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-mailchimp-list-subscribe-form-tie-in-with-custom-plugin/#post-2515144)
 * 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) Profit
 * Savy?
 * How do?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Custom Post Types and Permalink Variables](https://wordpress.org/support/topic/custom-post-types-and-permalink-variables/)
 *  Thread Starter [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/custom-post-types-and-permalink-variables/#post-2513154)
 * This 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Custom Post Types and Permalink Variables](https://wordpress.org/support/topic/custom-post-types-and-permalink-variables/)
 *  Thread Starter [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/custom-post-types-and-permalink-variables/#post-2513152)
 * OK – this plugin is really helpful for understanding the permalink structure!
   
   [http://www.askapache.com/wordpress/rewriterule-viewer-plugin.html#aadl](http://www.askapache.com/wordpress/rewriterule-viewer-plugin.html#aadl)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] [Plugin: WP User Frontend] None of the short codes work](https://wordpress.org/support/topic/plugin-wp-user-frontend-none-of-the-short-codes-work/)
 *  [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-wp-user-frontend-none-of-the-short-codes-work/#post-1981221)
 * There is a typo in the shortcode – answer is here
    [http://wordpress.org/support/topic/plugin-wp-user-frontend-shortcode?replies=2](http://wordpress.org/support/topic/plugin-wp-user-frontend-shortcode?replies=2)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] [Plugin: WP User Frontend] Shortcode](https://wordpress.org/support/topic/plugin-wp-user-frontend-shortcode/)
 *  [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-wp-user-frontend-shortcode/#post-1890070)
 * [@nielsdv](https://wordpress.org/support/users/nielsdv/) – NICE!! thanks – that
   totally works!!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] [Plugin: WP User Frontend] Does not work in WordPress 3.1](https://wordpress.org/support/topic/plugin-wp-user-frontend-does-not-work-in-wordpress-31/)
 *  [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-wp-user-frontend-does-not-work-in-wordpress-31/#post-1935540)
 * I’m just getting the short codes written out
 * [http://awesomescreenshot.com/03eal1z1f](http://awesomescreenshot.com/03eal1z1f)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] [Plugin: WP User Frontend] None of the short codes work](https://wordpress.org/support/topic/plugin-wp-user-frontend-none-of-the-short-codes-work/)
 *  [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-wp-user-frontend-none-of-the-short-codes-work/#post-1981220)
 * same problem
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quick Post Widget] [Plugin: Quick Post Widget] How can i have Visual Editor By Default?](https://wordpress.org/support/topic/plugin-quick-post-widget-how-can-i-have-visual-editor-by-default/)
 *  [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-quick-post-widget-how-can-i-have-visual-editor-by-default/#post-1646973)
 * [@thibaut](https://wordpress.org/support/users/thibaut/)
 * I am trying to do this exact same thing – did you ever get the problem solved??
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Social network front end with WP backend](https://wordpress.org/support/topic/social-network-front-end-with-wp-backend/)
 *  Thread Starter [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/social-network-front-end-with-wp-backend/#post-1922124)
 * Oh yeah!!! buddypress is awesome!
    Thank you much @cubecolour for pointing to
   it!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Social network front end with WP backend](https://wordpress.org/support/topic/social-network-front-end-with-wp-backend/)
 *  Thread Starter [ryanITLab](https://wordpress.org/support/users/ryanitlab/)
 * (@ryanitlab)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/social-network-front-end-with-wp-backend/#post-1921949)
 * Thanks! I’ll check it out now

Viewing 13 replies - 1 through 13 (of 13 total)