lalitpendhare
Forum Replies Created
-
Hello,
Thanks for your reply.
But it’s not updating my facebook post count but it will update greatly twitter count.
Is there any site blacklisting on facebook????
I can share my post on facebook but not affect in the count. so I worry.
Can you please look at this.
Thanks.
Hello,
you just copy and paste this function in your child theme and make changes as you need. that’s work awesome!!
function weston_register_title_metabox() { $prefix = '_weston_title_'; $cmb_title = new_cmb2_box( array( 'id' => $prefix . 'options', 'title' => __( 'Title Area Options', 'weston' ), 'object_types' => array( 'page', 'project', 'post', 'product'), // Post type 'context' => 'normal', 'priority' => 'high', 'show_names' => true ) ); $cmb_title->add_field( array( 'name' => __( 'Show Title Area', 'weston' ), 'desc' => __( 'Hide or show the page title area.', 'weston' ), 'id' => $prefix . 'show', 'type' => 'select', 'show_option_none' => false, 'options' => array( 'yes' => __( 'Yes', 'weston' ), 'no' => __( 'No', 'weston' ), ), ) ); $cmb_title->add_field( array( 'name' => __( 'Subtitle Text', 'weston' ), 'desc' => __( 'This text will be displayed below the title on pages and projects.', 'weston' ), 'id' => $prefix . 'subtitle', 'type' => 'text' ) ); $cmb_title->add_field( array( 'name' => __( 'Hide Text', 'weston' ), 'id' => $prefix . 'hide_text', 'type' => 'select', 'options' => array( 'no' => __( 'No', 'weston' ), 'yes' => __( 'Yes', 'weston' ), ), ) ); $cmb_title->add_field( array( 'name' => __( 'Title Image', 'weston' ), 'desc' => __( 'This image will appear above the title text.', 'weston' ), 'id' => $prefix . 'img', 'type' => 'file', ) ); $cmb_title->add_field( array( 'name' => __( 'Title Alignment', 'weston' ), 'id' => $prefix . 'alignment', 'type' => 'select', 'options' => array( '' => __( 'Default', 'weston' ), 'center' => __( 'Center', 'weston' ), 'left' => __( 'Left', 'weston' ), 'right' => __( 'Right', 'weston' ) ), ) ); $cmb_title->add_field( array( 'name' => __( 'Title Area Height', 'weston' ), 'desc' => __( 'Set the height of the title area in pixels. (ex. 400)', 'weston' ), 'id' => $prefix . 'area_height', 'type' => 'text_small' ) ); $cmb_title->add_field( array( 'name' => __( 'Title Background Image', 'weston' ), 'desc' => __( 'Upload an image or enter a URL.', 'weston' ), 'id' => $prefix . 'bg_img', 'type' => 'file', ) ); $cmb_title->add_field( array( 'name' => __( 'Enable Background Parallax', 'weston' ), 'id' => $prefix . 'parallax', 'type' => 'select', 'options' => array( 'no' => __( 'No', 'weston' ), 'yes' => __( 'Yes', 'weston' ), ), ) ); $cmb_title->add_field( array( 'name' => __( 'Title Text Color', 'weston' ), 'id' => $prefix . 'color', 'type' => 'colorpicker', 'default' => '' ) ); }
Forum: Fixing WordPress
In reply to: Creating a Dynamic PageHello,
you can create a custom page through custom page template functionality of WordPress. you can found more details in https://www.wpbeginner.com/wp-themes/how-to-create-a-custom-page-in-wordpress/
after all validation then you can put the action as thank you page in the form.
Forum: Fixing WordPress
In reply to: Changing wordpress with a new URLHello hhtmp88,
The first thing you need to take backup of your database. As you have mentioned, you have changed your URL then you also need to be updated the same into the database. so, WordPress stored URL in the options table. so where you need to change “site URL” and “homeurl”. here your site is working but still, all images are not shown. So the better solution is this you just extract your database and find and replace new URL with old one and then upload that database. So, all working find and smooth as in old site.
Forum: Fixing WordPress
In reply to: Problem trying to update an article (timeout?)Hello nulusios,
Some times it will happen when your internet connection has been down for while. So, I think there will be no issue at all in wp or server side. it’s an issue with internet connection.
Hi johan,
I need to check function of this code and also need to be check which action or filter it is used.
So, please provide me those details so I can help to resolve your issue.
Forum: Fixing WordPress
In reply to: Can’t create an variable product – stuck on loadingSometime it will happen. I’m also facing this issue. the issue is automatically resolved after you restart your PC and clear all cache from the browser.