Code96
Forum Replies Created
-
Forum: Plugins
In reply to: [PHP Mobile Redirect] Apply Redirect to a particular page onlyYou 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
In reply to: [PHP Mobile Redirect] Apply Redirect to a particular page onlyIs your site using a framework, regular WordPress theme, or child theme?
Forum: Plugins
In reply to: [PHP Mobile Redirect] Broken redirect back to full viewTry using the following code to set the cookie..
<?php setcookie("mobile","m", time()+3600, "/", ".circavista.com"); ?>
Forum: Plugins
In reply to: [Genesis Easy Columns] make columns responsiveResolved
Forum: Plugins
In reply to: [Genesis Easy Columns] make columns responsive@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
In reply to: [PHP Mobile Redirect] Not redirecting back to Full ViewMake 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
In reply to: [Genesis Easy Columns] REQUEST: Add buttons/shortcodes to clear columns.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
In reply to: [Genesis Easy Columns] No space between columnsThanks for the update and the review! Let me know if you have any further questions.
Forum: Plugins
In reply to: [Genesis Easy Columns] No space between columnsI 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
In reply to: [Genesis Easy Columns] REQUEST: Add buttons/shortcodes to clear columns.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
In reply to: [Genesis Easy Columns] No space between columnsWhat is the URL to the page with the columns?
Forum: Plugins
In reply to: [Genesis Easy Columns] REQUEST: Add buttons/shortcodes to clear columns.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
In reply to: [PHP Mobile Redirect] Plugin Does Not Work After UpdateI hope this helps those of you that have recently upgraded and think that the plugin is not working.
Sorry for any inconvenience.
Forum: Plugins
In reply to: [Genesis Easy Columns] Broken EditorThank you for your feedback. I have corrected the issue, please download the plugin and try again.
Forum: Reviews
In reply to: [Genesis Easy Columns] Breaks EditorPlease visit: https://www.code96wd.com/genesis-easy-columns
I appreciate any feedback, I just made an update to the plugin_url().