amindiary
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Secure connection error to ww.wp.xz.cn onlyIβve installed cyberpanel on another VPS (not same server as this)
and openssl connection works fine, so recommended client to change server, itβs server issue not cyberpanel and not WordPress.Forum: Everything else WordPress
In reply to: Secure connection error to ww.wp.xz.cn onlyThank you I will try investigate more, and if found anything will post here
Forum: Everything else WordPress
In reply to: Secure connection error to ww.wp.xz.cn only@threadi Thank you for reply.
I’ve posted on cyberpanel community too, since I’ve installed it as cpanel alternative.the weird part is, why connection works to any ip, but not works for ww.wp.xz.cn
will search about uninstalling mod_security
@mstudioil awesome, with elementor you can use it breadcrumb widget too. I’m from OLD guys using Elementor pro from version 1.2 π
@mstudioil in your case, the code will be below code, add it in
function.phpand placethe_breadcrumb()in your theme where you need to display breadcrumb. and need to add your own css to style it.<?php /*============================================= = BREADCRUMBS = =============================================*/ // to include in functions.php function the_breadcrumb() { $sep = 'Β»'; if (!is_front_page()) { // Start the breadcrumb with a link to your homepage echo '<nav id="breadcrumbs">'; echo '<ol>'; echo '<li class="breadcrumb-item"><a href="'; echo get_option('home'); echo '">'; bloginfo('name'); echo '</a></li>' . $sep; echo '<li class="breadcrumb-item active">'; // Check if the current page is a category, an archive or a single page. If so show the category or archive name. if (is_category() || is_single() ){ the_category('title_li='); } elseif (is_archive() || is_single()){ if ( is_day() ) { printf( __( '%s', 'text_domain' ), get_the_date() ); } elseif ( is_month() ) { printf( __( '%s', 'text_domain' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'text_domain' ) ) ); } elseif ( is_year() ) { printf( __( '%s', 'text_domain' ), get_the_date( _x( 'Y', 'yearly archives date format', 'text_domain' ) ) ); } else { _e( 'Blog Archives', 'text_domain' ); } } // If the current page is a single post, show its title with the separator if (is_single()) { echo $sep; the_title(); } // If the current page is a static page, show its title. if (is_page()) { echo the_title(); } // if you have a static page assigned to be you posts list page. It will find the title of the static page and display it. i.e Home >> Blog if (is_home()){ global $post; $page_for_posts_id = get_option('page_for_posts'); if ( $page_for_posts_id ) { $post = get_post($page_for_posts_id); setup_postdata($post); the_title(); rewind_posts(); } } echo '</li>'; echo '</ol>'; echo '</nav>'; } } ?>@mstudioil I’ve used custom breadcrumb and ignored YOAST one.
Why it marked as resolved? they just suggest to change style! but it MUST be changeable using filters and actions. I need to change markup too like @mstudioil question!
Forum: Plugins
In reply to: [Dynamic Conditions] Last Update broken another shortcodesI have same problem. Installed 1.5.1b and fixed for now, thanks for quick fix!
@benjirahmed is there any filter to setup manually? something allow me to run a function before form store?
add_filter(‘met_form_before_submit’) if not going to use another form plugin. thank you.@benjirahmed even we can’t set a custom password in AUTH tab
this is your screenshot :
there is only username and role and email fields. There must be any custom field actually
Hey @benjirahmed yes I checked it now and I see ONLY password and username can use in real registration, I want ot get user AGE in registration using metform as example, there is no option to set AGE field to a custom field for user.
about radio, I need remember me functionality for login form that made with metform, it’s not possible I guess.
Same issue for me, any update?
THANKS. I sent more topics
its actually changing one line from ::TEXTAREA to ::WYISWYG
Screenshot is in the post above ^ https://hizliresim.com/JDgWmj
the issue is, col-xs-12 or col-sm-6 that you used is fine with bootstrap 3.3.7 but if someone use bootstrap 4, this widget will break.