WilliamH19
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] billing_email was called incorrectlyProblem solved! Is was indeed the WPfeedback plugin that was causing the problem!
Forum: Plugins
In reply to: [WooCommerce] billing_email was called incorrectlyHi Doug,
Thanks for the reply.
I checked the System Status but there a now notifications about outdated templates:
### Templates ### Overrides: flatsome/woocommerce/archive-product.php flatsome/woocommerce/cart/cart-empty.php flatsome/woocommerce/cart/cart.php flatsome/woocommerce/checkout/form-checkout.php flatsome/woocommerce/checkout/form-coupon.php flatsome/woocommerce/checkout/thankyou.php flatsome/woocommerce/content-product.php flatsome/woocommerce/content-product_cat.php flatsome/woocommerce/content-single-product.php flatsome/woocommerce/global/breadcrumb.php flatsome/woocommerce/global/quantity-input.php flatsome/woocommerce/global/wrapper-end.php flatsome/woocommerce/global/wrapper-start.php flatsome/woocommerce/loop/loop-end.php flatsome/woocommerce/loop/loop-start.php flatsome/woocommerce/loop/orderby.php flatsome/woocommerce/loop/pagination.php flatsome/woocommerce/loop/result-count.php flatsome/woocommerce/loop/sale-flash.php flatsome/woocommerce/myaccount/form-login.php flatsome/woocommerce/myaccount/navigation.php flatsome/woocommerce/notices/error.php flatsome/woocommerce/notices/notice.php flatsome/woocommerce/notices/success.php flatsome/woocommerce/product-searchform.php flatsome/woocommerce/single-product/photoswipe.php flatsome/woocommerce/single-product/price.php flatsome/woocommerce/single-product/product-image.php flatsome/woocommerce/single-product/product-thumbnails.php flatsome/woocommerce/single-product/related.php flatsome/woocommerce/single-product/review.php flatsome/woocommerce/single-product/sale-flash.php flatsome/woocommerce/single-product/share.php flatsome/woocommerce/single-product/short-description.php flatsome/woocommerce/single-product/tabs/tabs.php flatsome/woocommerce/single-product/title.php flatsome/woocommerce/single-product/up-sells.php flatsome/woocommerce/single-product-reviews.php flatsome/woocommerce/single-product.phpDoes that still mean that some templates are outdated?
Thanks!
William
Forum: Themes and Templates
In reply to: [Theme: Bridge] Edit button in headerI changed margin-top to margin-right, but the problem is that when I visite the site mobile and on other devices the button is not centered but is behind the logo, because in this way it isn’t responsive, but just a standard number of .px
Also when I scrolled down it goes back the old way!
I think I just leave it like this, or the must be and easy and good way to fix this?
Forum: Themes and Templates
In reply to: [Theme: Bridge] Edit button in headeradd this to custom css?
Forum: Themes and Templates
In reply to: [Theme: Bridge] Edit button in headerDoesn’t worked, the button is only moving a little down that’s it!
Isn’t it possible to move the position of the widget area, or to create a widget area i place of the regular menu?
Forum: Themes and Templates
In reply to: [Theme: Bridge] Edit button in headerNot really, I added a normal button to my widget area next to the search button, the problem is that I want it in the middle, can I possible change the position of the widget area to the middle of the menu?
Do you think there is a simple solution for this problem, or is my theme this not very compatible with your plugin?
Hope this can be solved!
I tried adding # to link url, but still no result!
Do you maybe have some time to look into it?
We are so far, just a little further…
Maybe it has to do with my contact form 7 (id = 15717) which is in de popup?
I added the popmake-15747 class to my menu-item ‘Plan een wandeling’ When auto open was ON it work just as it did before. Now I turned auto open OFF, and the button didn’t worked!!
It should be so easy! But it just don’t work!
Got it figured out! By moving the files from localhost to server there has been lost a part of the .php file, so I copied that from my existing localhost file to my server file and now it works perfectly fine!
But can you look into the problem I had with automatically popping up, now the site is live?
The website is online http://philomenus.com
I only don’t can login into http://philomenus.com/wp-admin because of an error, maybe you can solve this, I already looked into the file it is referring to it ends like this;
/**
* Save post meta when the save_post action is called
*
* @since 1.0
* @param int $post_id Popup (Post) ID
* @global array $post All the data of the the current post
* @return void
*/
function popmake_popup_meta_box_save( $post_id, $post ) {if ( isset( $post->post_type ) && ‘popup’ != $post->post_type ) {
return;
}if ( ! isset( $_POST[‘popmake_popup_meta_box_nonce’] ) || ! wp_verify_nonce( $_POST[‘popmake_popup_meta_box_nonce’], basename( __FILE__ ) ) ) {
return;
}if ( ( defined( ‘DOING_AUTOSAVE’ ) && DOING_AUTOSAVE ) || ( defined( ‘DOING_AJAX’) && DOING_AJAX ) || isset( $_REQUEST[‘bulk_edit’] ) ) {
return;
}if ( isset( $post->post_type ) && ‘revision’ == $post->post_type ) {
return;
}if ( ! current_user_can( ‘edit_post’, $post_id ) ) {
return;
}
foreach ( popmake_popup_meta_fields() as $field ) {
if ( isset( $_POST[ $field ] ) ) {
$new = apply_filters( ‘popmake_metabox_save_’ . $field, $_POST[ $field ] );
update_post_meta( $post_id, $field, $new );
} else {
delete_post_meta( $post_id, $field );
}
}$includes = popmake_get_popup_targeting_condition_includes( $post_id );
$excludes = popmake_get_popup_targeting_condition_excludes( $post_id );foreach(popmake_get_supported_types() as $pt) {
foreach(array(‘include’, ‘exclude’) as $type) {
$prefix = “popup_targeting_condition_” . ($type == ‘exclude’ ? ‘exclude_’ : ”) . “on_{$pt}”;
$current = $type == ‘include’ ? (!empty($includes[$pt]) ? $includes[$pt] : array() ) : (!empty($excludes[$pt]) ? $excludes[$pt] : array() );
$type_field = $prefix;
$type_prefix = $prefix .’_’;$temp_ids = array();
if( !empty($_POST[$type_field]) ) {
foreach(explode(‘,’, trim($_POST[$type_field])) as $id) {
if(is_int( intval( $id ) ) ) {
$temp_ids[] = intval( $id );
}
}
}
/**
* Remove existing meta that no longer exist in $_POST field.
*/
if(!empty($current)) {
foreach($current as $id) {
if(!in_array($id, $temp_ids)) {
delete_post_meta( $post_id, $type_prefix.$id );
}
}
}
/**
* Adds post meta for non existing post type ids in $_POST.
*/
forWhat do I need to change to get it running?
Hey Daniel,
Hopefully I get the site tomorrow on server, then I send you the URL so you can take a look at it.
The customer really wants namely that the popup only opens when you press the button!
Hopefully that can be accomplished.
Ok, I get that.
But when auto open is ON it open automatically, and after that my menu item works fine!
But when I turn auto open OFF my menu item would not open anymore!Also when I set the delay time to open after 20.000 milliseconds, before the popup shows up the menu item doesn’t work, but after he has shown up it works fine.
Does that has anything to do with the CSS class I’m using? How can I possibly solve this?