Title: Plugin Selection Help
Last modified: August 21, 2016

---

# Plugin Selection Help

 *  [Pete-L](https://wordpress.org/support/users/pete-l/)
 * (@pete-l)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/plugin-selection-help/)
 * Hello folks,
 * Firstly awesome work to everyone working on the WP project, its a quality and
   just works unlike a lot of other off the shelf software!
 * I’m new to WP and was hoping for some plugin advise from the more experienced
   members here. Basically im developing a site for my up coming wedding, yes there
   a lots of posts on similar sites but nothing quite what im after, hence the post.
 * Heres my requirements and the plugins i’m currently using (with the issues im
   facing). So if you can suggest a better **free** plugin please do so. *Note I
   havent touched PHP in 9years so am rusty to say the least!!*
 * Requirements
    1. Multilingual Site (en_GB / pt_BR) – **Plugins used: **xili-language, xili-dictionary,
       xili-tidy-tags, xili-xl-bbp-addon – **Problem faced:** Setting flags on 3.8.2
       rather than text language selection. I’ve seen lots of posts on previous versions
       but havent managed to get this working on 3.8.2
 *  1. Multilingual RSVP (en_GB / pt_BR) – **Plugins used:** Google Docs Guestlist –**
       Problem faced:** This does 90% of what I want but I wanted to write into a Google
       Docs Spreadsheet but I wanted to have dual language writing back into the same
       spreadsheet and the plugin is English only. Also I wanted to gather further 
       information from the guess, i.e. contact telephone number, address, these fields
       aren’t there by default but I guess I could hack around in the code to add the
       extra fields / columns etc
 *  1. Multilingual Paypal Gift List (en_GB / pt_BR) – **Plugins used:** Woocommerce,
       Paypal for Woocommerce, Paypal Currency Converter BASIC for Woocommerce – **
       Problem faced:** I wanted to have a multi lingual site with prices on the en_GB
       page in GBP(£) but when I go to the pt_BR page it shows the price in BRL(R$)
       along with the Title/Description in the respective language. Also how does this
       work with the re-direct to paypal? Would it send all purchases to a English 
       version or how could I ensure it forwards to the regional site?
 *  1. Multilingual Googlemaps link (with directions options) (en_GB / pt_BR) – **Plugins
       used:** Comprehensive Google Map Plugin – **Problem faced:** I cant find a good
       free one that allows directions and im unsure how to do the multilingual part
 * Any help would be much appreciated from a stressed out groom to be!!

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

 *  [Michel – xiligroup dev](https://wordpress.org/support/users/michelwppi/)
 * (@michelwppi)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/plugin-selection-help/#post-4792089)
 * As author of xili-language, I understand your long beginning road. xili-language
   trilogy is free published since more than 5 years in a contributive approach 
   where I feedback my experience (and long period of works) with WordPress in multilingual
   context – [see this text explaining…](http://2014.extend.xiligroup.org/en/about/)–
 * Flags, for us is a style approach depending of context strategy (flag means country
   or language ?? ), design and selected theme (from huge available list). The solution
   is currently in css. In menu or widget, xili-language adds class available for
   css designing. As in twenty fourteen xili child theme presented as free example,
   more powerful mechanisms are implemented. (see previous cited link).
    M.
 *  [YogieAnamCara](https://wordpress.org/support/users/yogieanamcara/)
 * (@yogieanamcara)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/plugin-selection-help/#post-4792097)
 * Hey [@pete-l](https://wordpress.org/support/users/pete-l/),
 * what do you mean when you say “Setting flags on 3.8.2 rather than text language
   selection.” in regards to XILI? You want to have images instead of text links?
 * Cheers
    YogieAnamCara
 *  Thread Starter [Pete-L](https://wordpress.org/support/users/pete-l/)
 * (@pete-l)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/plugin-selection-help/#post-4792099)
 * Hi [@michel](https://wordpress.org/support/users/michel/) – xiligroup dev – thanks
   for you reply, basically im using the twentythirteen theme and was looking to
   get the flags (images) showing in the menu bar rather than “English” “Portuguese”,
   I’ve uploaded the images into /images/flags/en_gb.jpg and pt_br.jpg then updated
   the style.css with the following –
 *     ```
       /* xili language flags */
       #xili_language { width: auto; color: #666; height:35px;  padding:0px 0px 20px 0;
       }
       #xili_language .xl {
       	font-size: 13px;
       	line-height: 18px;
       	margin:0;
       	width: 100%;
       	padding:0;
       	height:35px;
       	display: block;
       }
       #xili_language .xl ul {
       	list-style: none;
       	float:right;
       }
       #xili_language .xl li {
       	float: left; display:inline;
       	padding:1px 2px;
       }
       #xili_language a {color: #666;
       	text-transform: uppercase;
       	font-size: 10px;
       	display: block; text-decoration: none;
       	letter-spacing: 1px;
       }
       ul#menu-languages li.lang-en_gb, ul#menu-languages li.lang-pt_br {text-indent:-9999px; width:18px; }
       ul#menu-languages li.lang-en_gb a {background: transparent url('images/flags/en_gb.jpg') no-repeat center 5px;}
       ul#menu-languages li.lang-pt_br a {background: transparent url('images/flags/pt_br.jpg') no-repeat center 5px;}
   
       /* li#menu-xlang-separator a {display:none;} */
       ```
   
 * I’ll take a look at the twentyfourteen theme if things are more powerful in it
   🙂
 * [@yogieanamcara](https://wordpress.org/support/users/yogieanamcara/) – Yep sorry
   I should have been a bit clearer, I was referring to the country flags (.jpg’s)
   rather than Text languages in the menu bar.
 *  [Michel – xiligroup dev](https://wordpress.org/support/users/michelwppi/)
 * (@michelwppi)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/plugin-selection-help/#post-4792166)
 * Have you analysed the example multilingual twentythirteen-xili child theme available
   and based from series of embedded themes in WP ?
    The sources are now downloadable
   in [GitHub](https://github.com/dev-xiligroup/wp-child-themes). It is a very powerful
   implementation based on a php class provided by xili-language plugin. Good work!
   M.
 *  Thread Starter [Pete-L](https://wordpress.org/support/users/pete-l/)
 * (@pete-l)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/plugin-selection-help/#post-4792194)
 * Just installed the child theme and its all good now! Thanks!

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

The topic ‘Plugin Selection Help’ is closed to new replies.

## Tags

 * [child theme](https://wordpress.org/support/topic-tag/child-theme/)
 * [css](https://wordpress.org/support/topic-tag/css/)
 * [Google Docs](https://wordpress.org/support/topic-tag/google-docs/)
 * [guest list](https://wordpress.org/support/topic-tag/guest-list/)
 * [paypal](https://wordpress.org/support/topic-tag/paypal/)
 * [spreadsheet](https://wordpress.org/support/topic-tag/spreadsheet/)
 * [wedding](https://wordpress.org/support/topic-tag/wedding/)

 * 5 replies
 * 3 participants
 * Last reply from: [Pete-L](https://wordpress.org/support/users/pete-l/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/plugin-selection-help/#post-4792194)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
