NetMonkey
Forum Replies Created
-
Not sure if I can help with that. Since you’ve bought the Pro version, you get priority support from the developer’s website, not here. This is only for the free version.
You need to go to their website for support.
Support,
I figured this one out myself! On the Field Labels tab under settings, scroll down to the last section that allows you to edit things such as (email content & magic tags) on the right.
On default install there was NO MESSAGE inserted, so the plugin was not displaying the form’s message in the email sent.
Once I set the magic tag to include “message” I could then see the message. So now my setup looks like this:
IP address: {ip} Sent from page: {permalink} Name: {name} Message: {message}Problem solved!
Can someone please respond to this support posting?
If I can’t receive a reply soon, I’ll have to uninstall this plugin, because I can’t have a form on my website that I can’t receive information from.
I just noticed that the message field is the only field that when clicked on, has a blue outline. The name, email and subject fields do not display the blue outline when clicked on.
I had to insert the following css to get the form to work like I wanted.
.pirate_forms_thankyou_wrap p { color: #458B00 !important; } .contact_message_wrap{ clear: both !important; } .pirate-forms-submit-button{ float:left !important; }Do I need to make more css edits?
Forum: Plugins
In reply to: [WooCommerce] Checkout errors after upgrade to 3.0.4No update yet, I’m sure someone will reply soon.
I’m experimenting with different php code hacks for my child theme functions file to overcome the default credit card icons. I’ve started first with the stripe icons. This php isn’t working:
//change the icons for stripe function woocommerce_stripe_icon() { return get_bloginfo('stylesheet_directory') . '/wp-content/uploads/2017/03/stripe-cards.png'; } add_filter( 'woocommerce_stripe_icon', 'wc_stripe_icon', 10, 2 );Can you suggest something I could use to “not” use the svg icons individually and to use one png file that displays all credit card images as one file?
Barry
Thanks for the css suggestion. That works great for removing the cards I don’t want to display. When you say I can upload my own images to the plugin directory, that makes sense. But what I really would like to do is, not display any .svg images.
I want to display only my .png images. So for that, do you have a bit of php I could use as a function/filter I could pop into my child theme functions file to only display png images?
Barry
Thanks for the tips John. With the right css styling code there now and a change to responsive display type, all’s good now! Call this one resolved!
Barry
Forum: Themes and Templates
In reply to: [evolve] Does this theme 3.3.7 support WooCommerce?Is this php code correct to use in a Evolve child theme as a functions.php file? I got this code from the WooCommerce support website. Do I need to change it? Or will it work like this?
<?php remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10); add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10); function my_theme_wrapper_start() { echo '<section id="main">'; } function my_theme_wrapper_end() { echo '</section>'; } add_action( 'after_setup_theme', 'woocommerce_support' ); function woocommerce_support() { add_theme_support( 'woocommerce' ); }Forum: Themes and Templates
In reply to: [evolve] Sticky header logo image-smaller after upgradeI figured it out. I had to add custom css and I played with the pixel numbers until it was fixed. For anyone that experienced the same thing, this is what I added:
body #header.sticky-header img#logo-image { max-width: 160px; height: 33px; }Forum: Hacks
In reply to: Ignore wp get current user status, if page is XHere’s the code with the lines reversed as it is now:
public function videoList() { if(is_page('my-page')) echo do_shortcode ('[user-video-list]'); if (is_page('myaccount')) global $wpdb; $displayMsg = null; $current_user = wp_get_current_user(); if ($current_user->ID == 0) { $view = new View(dirname(__FILE__) . '/views/not-logged-in.phtml'); return $view->render(true); }Now I get an internal server error 500 when the page displays.
Forum: Hacks
In reply to: Ignore wp get current user status, if page is XIt seems that because this code is in place:
$current_user = wp_get_current_user(); if ($current_user->ID == 0) { $view = new View(dirname(__FILE__) . '/views/not-logged-in.phtml'); return $view->render(true);It ignores the page that it’s being displayed on and processes the not-logged-phtml file. What if the code was reversed and my (if is page) code, came before the current_user code? Does it make a difference?
Forum: Plugins
In reply to: [WORDPRESS VIDEO GALLERY] Cannot upload video adsI did exactly as you mentioned. I deleted the text in the SQL window, I pasted the alter table commands, I clicked GO and there was this MySQL error:
# MySQL returned an empty result set (i.e. zero rows).
I can troubleshoot this and correct things if you give me a suggestion.