Title: vebbmaster's Replies | WordPress.org

---

# vebbmaster

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Internal linking](https://wordpress.org/support/topic/internal-linking-9/)
 *  Thread Starter [vebbmaster](https://wordpress.org/support/users/vebbmaster/)
 * (@vebbmaster)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/internal-linking-9/#post-14824596)
 * This is my workaround:
    1. Create a new user for each language
    2. Tools -> Export -> Pages -> Export by Author
    3. Search and replace in a text editor
    4. Delete the existing pages (by that author)
    5. Import updated pages (Tools -> Import -> WordPress)
 * You’re welcome.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Internal linking](https://wordpress.org/support/topic/internal-linking-9/)
 *  Thread Starter [vebbmaster](https://wordpress.org/support/users/vebbmaster/)
 * (@vebbmaster)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/internal-linking-9/#post-14730194)
 * I guess there is no easy way.
 * 1. You can create a script that automatically rewrites all of the links on page
   load
 * 2. You can do a search and replace per language in the database
 * …but you need to be very careful not to screw anything up.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Recaptcha – Add Option to Move Recaptcha Badge to Left or Right](https://wordpress.org/support/topic/recaptcha-add-option-to-move-recaptcha-badge-to-left-or-right/)
 *  [vebbmaster](https://wordpress.org/support/users/vebbmaster/)
 * (@vebbmaster)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/recaptcha-add-option-to-move-recaptcha-badge-to-left-or-right/#post-11175924)
 * I can confirm that this works:
 *     ```
       .grecaptcha-badge {
       	visibility: collapse !important;  
       	display:none !important;
       }
       ```
   
 * However, it would be nice to have the option of moving it to the left side. You
   can put “left: 0px” in the CSS, but it appears in full (expanded)…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Appending URL with unique ID](https://wordpress.org/support/topic/appending-url-with-unique-id/)
 *  Thread Starter [vebbmaster](https://wordpress.org/support/users/vebbmaster/)
 * (@vebbmaster)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/appending-url-with-unique-id/#post-10829935)
 * I figured I’d give an update on this, because I did figure it out in the end.
   The answer was a simple PHP cookie. Something like this:
 *     ```
       <?php
       setcookie("source",$_GET['utm_source'],time()+60*60*24*30, '/');
       ?>
       ```
   
 * Then you can access what is stored in the cookie in many ways, for example:
 * `echo $_COOKIE["source"];`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence Security – Password, Two Factor Authentication, and Brute Force Protection] 403 error on subdomain](https://wordpress.org/support/topic/403-error-on-subdomain/)
 *  Thread Starter [vebbmaster](https://wordpress.org/support/users/vebbmaster/)
 * (@vebbmaster)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/403-error-on-subdomain/#post-10807604)
 * Ok, I fixed it by changing the permissions on the folder in my server. It was
   set to 750 and, for whatever reason, 755 works fine.
 * Hope that helps someone else!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Business Era] Slider text cutoff point?](https://wordpress.org/support/topic/slider-text-cutoff-point/)
 *  Thread Starter [vebbmaster](https://wordpress.org/support/users/vebbmaster/)
 * (@vebbmaster)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/slider-text-cutoff-point/#post-10760532)
 * That is useful, thanks! I would like to know what I specifically would need to
   change to get a longer snippet, though.
 * On mobile, it only shows the headline and on desktop it only shows about 100 
   characters (as I said before).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Appending URL with unique ID](https://wordpress.org/support/topic/appending-url-with-unique-id/)
 *  Thread Starter [vebbmaster](https://wordpress.org/support/users/vebbmaster/)
 * (@vebbmaster)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/appending-url-with-unique-id/#post-10631829)
 * Tim Felmingham seems to have the answer I was looking for!
 * [https://timfelmingham.com/adwords-conversion-tracking-affilates/](https://timfelmingham.com/adwords-conversion-tracking-affilates/)
 * I use (a variant of) this code:
 *     ```
       <?php
       $gclid=$_GET['gclid'];
       $outgoinglink = 'http://www.merchants_website.com/mylandingpage.html?affID=12345&subid='. $gclid;
       ?>
       ```
   
 * Then add gclid=whatever to my inbound links (from Facebook, etc.). Works perfectly
   on “naked” links. Because I use redirects for all outbound links, it’s not as
   easy as it should be, but I will figure that part out!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Appending URL with unique ID](https://wordpress.org/support/topic/appending-url-with-unique-id/)
 *  Thread Starter [vebbmaster](https://wordpress.org/support/users/vebbmaster/)
 * (@vebbmaster)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/appending-url-with-unique-id/#post-10617902)
 * Hi, thanks for your reply! Unfortunately, that is not what I’m looking for – 
   rather the reverse.
 * I can see (in Google Analytics) where people come from and which button/link 
   they click to leave. I can see (in my affiliate program’s backend) how many conversions
   I get from those clicks.
 * What I cannot see is where those conversions **originally** came from. I want
   to know if visitors from a particular source convert better, so I can keep optimizing
   my efforts.
 * If there was a way to automatically append the exit url (on my site) with the
   referral domain, then I would also see it in the affiliate backend. It must be
   possible somehow!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutenberg] Updating/Publishing failed error](https://wordpress.org/support/topic/updating-publishing-failed-error/)
 *  Thread Starter [vebbmaster](https://wordpress.org/support/users/vebbmaster/)
 * (@vebbmaster)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/updating-publishing-failed-error/#post-10578925)
 * Not using Cloudflare or any other plugins, this was on a clean/fresh install.
   I suppose it could be a server setting?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Geolocation IP Detection] Delay the plugin?](https://wordpress.org/support/topic/delay-the-plugin/)
 *  Thread Starter [vebbmaster](https://wordpress.org/support/users/vebbmaster/)
 * (@vebbmaster)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/delay-the-plugin/#post-10043664)
 * When I tested in the backend, it says “Lookup duration: 0.01046 s”.
 * This is what I have in the code: [geoip_detect2_get_client_ip] – [geoip_detect2
   property=’city’] [geoip_detect2 property=’country’]
 * If I remove those shortcodes, it goes down from ~610 ms wait to ~10 ms for the
   page. Not sure what specifically is causing it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Geolocation IP Detection] Delay the plugin?](https://wordpress.org/support/topic/delay-the-plugin/)
 *  Thread Starter [vebbmaster](https://wordpress.org/support/users/vebbmaster/)
 * (@vebbmaster)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/delay-the-plugin/#post-10032005)
 * That’s the one I’m using (file-based, automatic). AJAX functionality would be
   great, I’ll keep an eye out for updates from you. 🙂
 * I was trying to delay it myself using jQuery, and at one point an external file
   with the lookup in it, but it didn’t work like I wanted it to. I’m not very good.:
   p

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