ddecort
Forum Replies Created
-
yes other pages are being translated properly
https://www.listentech.com/product-category/auri-broadcast-audio/
https://www.listentech.com/es/product-category/auri-broadcast-audio/There appears to be some kind of .htaccess issue. We also can get it to work on a development server, just not our production server, even with no difference in the configuration. We’re stumped.
Maybe the order in which the plugins were installed?
Forum: Plugins
In reply to: [Magento Wordpress Integration] Plugin breaks website, shows blank settingsJust to note on my previous post, php is at 5.5.9
Forum: Plugins
In reply to: [Magento Wordpress Integration] Plugin breaks website, shows blank settingsI’m having the same exact issue, and quite intermittently. I’ve done the exact steps in the instructions about modifying the magento functions file. Sometimes it works, sometimes it does’t, it seems very unstable. Have you found an absolute fix for the problem?
I’m using Magento Enterprise Edition (EE) 1.10.1.1 and the latest version of your plugin, 3.0.1 (and 1.0 for the widget plugins) on WordPress 3.8.1
I’d love to get this sorted out.
These are the errors I get:
Strict Standards: Redefining already defined constructor for class jck_mwi in /var/www/domains/nutraword.decort.net/htdocs/wp-content/plugins/magento-wordpress-integration/mwi.php on line 204
Strict Standards: Redefining already defined constructor for class jck_cat_specific_widget in /var/www/domains/nutraword.decort.net/htdocs/wp-content/plugins/mwi-cat-specific/mwi-cat-specific.php on line 72
Strict Standards: Redefining already defined constructor for class jck_mwi_shortcodes in /var/www/domains/nutraword.decort.net/htdocs/wp-content/plugins/mwi-shortcodes-widgets/mwi-shortcodes-widgets.php on line 51
Strict Standards: Redefining already defined constructor for class jck_prod_widget in /var/www/domains/nutraword.decort.net/htdocs/wp-content/plugins/mwi-shortcodes-widgets/mwi-shortcodes-widgets.php on line 84
Thanks
Forum: Plugins
In reply to: Auto login after register and redirect to profile pageThank you very much Jeff, that did the trick!
Forum: Plugins
In reply to: Auto login after register and redirect to profile pageSorry, actually the code used is this:
function tml_new_user_registered( $user_id ) { wp_set_auth_cookie( $user_id, false, is_ssl() ); $referer = remove_query_arg( array( 'action', 'instance' ), wp_get_referer() ); wp_redirect( $referer ); exit; } add_action( 'tml_new_user_registered', 'tml_new_user_registered' ); function tml_register_form() { wp_original_referer_field( true, 'previous' ); } add_action( 'register_form', 'tml_register_form' );
The main point is that using that code in your custom php for TML, the welcome email doesn’t send.
Thanks!
Forum: Plugins
In reply to: Auto login after register and redirect to profile pageI also am not getting the new user notification sent, and the plugin above does not work for me either (it just goes to a blank page, and doesn’t display the custom TML welcome message from the custom TML welcome email module.
Jeff, is there any way you could modify this code to allow the custom welcome email to be sent?
function tml_new_user_registered( $user_id ) { wp_set_auth_cookie( $user_id, false, is_ssl() ); wp_redirect( wp_get_referer() ); exit; } add_action( 'tml_new_user_registered', 'tml_new_user_registered' ); function tml_register_form() { wp_original_referer_field( true, 'previous' ); } add_action( 'register_form', 'tml_register_form' );
Forum: Fixing WordPress
In reply to: Add Featured Image problemI was actually able to track my issue down to the WPIDS security plugin. Once I disabled that my dialogs worked without the redirection.
Forum: Fixing WordPress
In reply to: Add Featured Image problem@superharas, did you ever resolve this? I’m having the same exact issue.
Forum: Plugins
In reply to: [Plugin: Custom Field Template] Issue with drop down html outputHow would I set the default of a textfield to be an image with a link? Right now it escapes the quotes with slashes, so the default isn’t working html.
Here is my original example:
[Marketing Area 1]
type = textarea
rows = 4
cols = 40
tinyMCE = true
htmlEditor = true
default = <img class=”size-full wp-image-98 alignnone” style=”border: 0pt none; margin: 0px;” title=”marketing1″ src=”https://www.markettrendsignal.com/wordpress/wp-content/uploads/marketing1.jpg” alt=”marketing1″ width=”741″ height=”204″ />
mediaButton = trueThat returned as the default in the page editor:
which obviously won’t work.
I then tried putting that in the “php code”, “#0” area:
$value = <img class=”size-full wp-image-98 alignnone” style=”border: 0pt none; margin: 0px;” title=”marketing1″ src=”https://www.markettrendsignal.com/wordpress/wp-content/uploads/marketing1.jpg” alt=”marketing1″ width=”741″ height=”204″ />
and updated my template to this:
[Marketing Area 1]
type = textarea
rows = 4
cols = 40
code = 0
tinyMCE = true
htmlEditor = true
default = $value
mediaButton = trueBut it just returns “$value” in the editor.
I know i’m missing something here and am just guessing at this point. The example for the type = select doesn’t seem to apply to setting the default for a text field.
Any help is greatly appreciated.