Title: Code96's Replies - page 7 | WordPress.org

---

# Code96

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 91 through 105 (of 107 total)

[←](https://wordpress.org/support/users/code96/replies/page/6/?output_format=md)
[1](https://wordpress.org/support/users/code96/replies/?output_format=md) [2](https://wordpress.org/support/users/code96/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/code96/replies/page/3/?output_format=md)…
[6](https://wordpress.org/support/users/code96/replies/page/6/?output_format=md)
7 [8](https://wordpress.org/support/users/code96/replies/page/8/?output_format=md)
[→](https://wordpress.org/support/users/code96/replies/page/8/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PHP Mobile Redirect] Apply Redirect to a particular page only](https://wordpress.org/support/topic/apply-redirect-to-a-particular-page-only/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/apply-redirect-to-a-particular-page-only/#post-3754825)
 * You will need to modify the plugin itself to get this to work.
 * wp-content/plugins/php-mobile-redirect/includes/functions.php
 * replace
 * `add_action('init', 'pmr_mobile_redirect');`
 * with
 *     ```
       function pmr_single_page_only(){
   
               if (is_page(42)){
   
                   pmr_mobile_redirect();
   
               }
           }
   
           add_action('get_header','pmr_single_page_only');
       ```
   
 * *note 42 in “if (is_page(42)){” should be changed to the ID of the page that 
   you want the redirect to appear on.
 * Keep in mind that when the plugin is updated, these modifications will be replaced
   and you will need to modify the code again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PHP Mobile Redirect] Apply Redirect to a particular page only](https://wordpress.org/support/topic/apply-redirect-to-a-particular-page-only/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/apply-redirect-to-a-particular-page-only/#post-3754824)
 * Is your site using a framework, regular WordPress theme, or child theme?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PHP Mobile Redirect] Broken redirect back to full view](https://wordpress.org/support/topic/broken-redirect-back-to-full-view/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/broken-redirect-back-to-full-view/#post-3754823)
 * Try using the following code to set the cookie..
 *     ```
       <?php
       setcookie("mobile","m", time()+3600, "/", ".circavista.com");
       ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Easy Columns] make columns responsive](https://wordpress.org/support/topic/make-columns-responsive/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/make-columns-responsive/#post-3720382)
 * Resolved
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Easy Columns] make columns responsive](https://wordpress.org/support/topic/make-columns-responsive/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/make-columns-responsive/#post-3720173)
 *     ```
       @media only screen and (max-width: 800px) {
   
       	.five-sixths,
       	.four-fifths,
       	.four-sixths,
       	.one-fifth,
       	.one-fourth,
       	.one-half,
       	.one-sixth,
       	.one-third,
       	.three-fifths,
       	.three-fourths,
       	.three-sixths,
       	.two-fifths,
       	.two-fourths,
       	.two-sixths,
       	.two-thirds {
       		padding: 0;
       		width: 100%;
       	}
   
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PHP Mobile Redirect] Not redirecting back to Full View](https://wordpress.org/support/topic/not-redirecting-back-to-full-view/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/not-redirecting-back-to-full-view/#post-3715752)
 * Make certain that the PHP code to set the cookie is at the very top of your mobile
   site index.php page before any html. Also, the default cookie name is “mobile”
   if you wish to change this, make certain you have updated the plugin settings
   page.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Easy Columns] REQUEST: Add buttons/shortcodes to clear columns.](https://wordpress.org/support/topic/request-add-buttonsshortcodes-to-clear-columns/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/request-add-buttonsshortcodes-to-clear-columns/#post-3688253)
 * Fred,
 * I am glad to hear that the fix worked. Thanks for the additional input, I will
   keep those in mind for the next update.
 * Matt
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Easy Columns] No space between columns](https://wordpress.org/support/topic/no-space-between-columns/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/no-space-between-columns/#post-3689791)
 * Thanks for the update and the review! Let me know if you have any further questions.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Easy Columns] No space between columns](https://wordpress.org/support/topic/no-space-between-columns/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/no-space-between-columns/#post-3689765)
 * I am sorry the plugin did not work out for you. The plugin simply inserts the
   same div’s that you have manually entered less the justify property. I would 
   like to attempt to recreate the issue, were the columns touching side by side?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Easy Columns] REQUEST: Add buttons/shortcodes to clear columns.](https://wordpress.org/support/topic/request-add-buttonsshortcodes-to-clear-columns/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/request-add-buttonsshortcodes-to-clear-columns/#post-3688235)
 * Fred,
 * You should see two new buttons directly to the right of the column buttons. If
   you hover over them they should say, “Add clear fix.” and “Add clear fix line.”
   I have tested on both local and live, and have not been able to replicate. Have
   you tried deactivating and reactivating?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Easy Columns] No space between columns](https://wordpress.org/support/topic/no-space-between-columns/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/no-space-between-columns/#post-3689756)
 * What is the URL to the page with the columns?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Easy Columns] REQUEST: Add buttons/shortcodes to clear columns.](https://wordpress.org/support/topic/request-add-buttonsshortcodes-to-clear-columns/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years ago](https://wordpress.org/support/topic/request-add-buttonsshortcodes-to-clear-columns/#post-3688144)
 * Great observation! Thanks for the heads up, I cannot believe I overlooked that
   in the original release. I think you will be pleased with version 1.1.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PHP Mobile Redirect] Plugin Does Not Work After Update](https://wordpress.org/support/topic/plugin-does-not-work-after-update/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/plugin-does-not-work-after-update/#post-3674101)
 * I hope this helps those of you that have recently upgraded and think that the
   plugin is not working.
 * Sorry for any inconvenience.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Easy Columns] Broken Editor](https://wordpress.org/support/topic/broken-editor-1/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/broken-editor-1/#post-3624104)
 * Thank you for your feedback. I have corrected the issue, please download the 
   plugin and try again.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Genesis Easy Columns] Breaks Editor](https://wordpress.org/support/topic/breaks-editor/)
 *  Plugin Author [Code96](https://wordpress.org/support/users/code96/)
 * (@code96)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/breaks-editor/#post-7756498)
 * Please visit: [http://www.code96wd.com/genesis-easy-columns](http://www.code96wd.com/genesis-easy-columns)
 * I appreciate any feedback, I just made an update to the plugin_url().

Viewing 15 replies - 91 through 105 (of 107 total)

[←](https://wordpress.org/support/users/code96/replies/page/6/?output_format=md)
[1](https://wordpress.org/support/users/code96/replies/?output_format=md) [2](https://wordpress.org/support/users/code96/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/code96/replies/page/3/?output_format=md)…
[6](https://wordpress.org/support/users/code96/replies/page/6/?output_format=md)
7 [8](https://wordpress.org/support/users/code96/replies/page/8/?output_format=md)
[→](https://wordpress.org/support/users/code96/replies/page/8/?output_format=md)