Title: beelde's Replies | WordPress.org

---

# beelde

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[s2Member – Excellent for All Kinds of Memberships, Content Restriction Paywalls & Member Access Subscriptions] Hook after Paypal and User Registration.](https://wordpress.org/support/topic/hook-after-paypal-and-registration-user/)
 *  Thread Starter [beelde](https://wordpress.org/support/users/beelde/)
 * (@beelde)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/hook-after-paypal-and-registration-user/#post-4770229)
 * FYI:
 * action hook:
    ws_plugin__s2member_during_paypal_notify_after_subscr_signup
 * works pretty nice.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[s2Member – Excellent for All Kinds of Memberships, Content Restriction Paywalls & Member Access Subscriptions] my s2 member custom registration field not working](https://wordpress.org/support/topic/my-s2-member-custom-registration-field-not-working/)
 *  [beelde](https://wordpress.org/support/users/beelde/)
 * (@beelde)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/my-s2-member-custom-registration-field-not-working/#post-4769677)
 * Did you update to the latest version? I have the same problem there.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP eCommerce] Shipping Calculator, Shipping Address wrong Calculation](https://wordpress.org/support/topic/shipping-calculator-shipping-address-wrong-calculation/)
 *  Thread Starter [beelde](https://wordpress.org/support/users/beelde/)
 * (@beelde)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/shipping-calculator-shipping-address-wrong-calculation/#post-4571424)
 * solution:
 * wpsc_meta is containing some category settings like “use default settings” or“
   use billing address”.
 * So you have to watch in your category settings if you have the same problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP eCommerce] Shipping Calculator, Shipping Address wrong Calculation](https://wordpress.org/support/topic/shipping-calculator-shipping-address-wrong-calculation/)
 *  Thread Starter [beelde](https://wordpress.org/support/users/beelde/)
 * (@beelde)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/shipping-calculator-shipping-address-wrong-calculation/#post-4571209)
 * Oh yeah: and I encapsulated the problem already by disabling all mu/plugins and
   clearing wpsc and other caches.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [.htaccess RewriteRule](https://wordpress.org/support/topic/htaccess-rewriterule-2/)
 *  Thread Starter [beelde](https://wordpress.org/support/users/beelde/)
 * (@beelde)
 * [13 years ago](https://wordpress.org/support/topic/htaccess-rewriterule-2/#post-3678709)
 * Don’t forget to comment `$wp_rewrite->flush_rules();` after reload page first
   time.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [.htaccess RewriteRule](https://wordpress.org/support/topic/htaccess-rewriterule-2/)
 *  Thread Starter [beelde](https://wordpress.org/support/users/beelde/)
 * (@beelde)
 * [13 years ago](https://wordpress.org/support/topic/htaccess-rewriterule-2/#post-3678708)
 * The solution was quite simple:
 *     ```
       function rewrite_rules(){
           global $wp_rewrite;
           add_rewrite_tag('%title%','([^&]+)');
           add_rewrite_rule('^gallery/([^/]*)?','index.php?page_id=9&title=$matches[1]','top');
           $wp_rewrite->flush_rules();
       }
       add_action('init','rewrite_rules');
       ```
   
 * Instead of using $_GET you have now to use $wp_query->query_vars[‘title’].
 * I hope it will help you.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [.htaccess RewriteRule](https://wordpress.org/support/topic/htaccess-rewriterule-2/)
 *  Thread Starter [beelde](https://wordpress.org/support/users/beelde/)
 * (@beelde)
 * [13 years ago](https://wordpress.org/support/topic/htaccess-rewriterule-2/#post-3678640)
 * Hey thanks for your fast response. If I’m going to …/theme/gallery/Portfolio-
   Item he redirects me to …/theme/gallery/Portfolio-Item/ and loads the /gallery/
   page and my contents like images will be fetched from /theme/gallery/ instead
   of /theme/.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [create own permalinks for dynamic titles](https://wordpress.org/support/topic/create-own-permalinks-for-dynamic-titles/)
 *  Thread Starter [beelde](https://wordpress.org/support/users/beelde/)
 * (@beelde)
 * [13 years ago](https://wordpress.org/support/topic/create-own-permalinks-for-dynamic-titles/#post-3676090)
 * Maybe I have post more specific information:
 * /gallery/ is a wordpress created page that uses wordpress permalink settings.
   What I’m trying to do now is to add something behind it like /gallery/Gallery-
   title that has to lead to /gallery/?title=Gallery-title without changing url.
 * This is my current .htaccess:
 *     ```
       # BEGIN Custom
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteRule ^portfolio/([-a-zA-Z0-9])$ portfolio/?title=$1 [L]
       </IfModule>
       # END Custom
   
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /wardeski/
       RewriteRule ^index\.php$ - [L]
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /wardeski/index.php [L]
       </IfModule>
       # END WordPress
       ```
   

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