Forum Replies Created
-
Author
-
Radu
ModeratorHi,
I think that problem is caused because the font family that you are using is loaded from footer not from head, try to do this.
COPY CODE/*head code input */ function add_in_head_tag() { $output = "<link rel='stylesheet' id='vc_google_fonts_oswald300regular700-css' href='//fonts.googleapis.com/css?family=Oswald%3A300%2Cregular%2C700&ver=4.5.1' type='text/css' media='all' />"; echo $output; } add_action('wp_head', 'add_in_head_tag');Let me know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorGreat
Have a nice week
Cheers
R.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorIf you want to redirect the visitors to certain page use this
COPY CODEadd_action( 'template_redirect', 'my_membersip_restrict' ); function my_membersip_restrict() { global $pmpro_pages, $post; if ( is_user_logged_in() && !pmpro_hasMembershipLevel() ) { if (isset($post->ID) && !in_array($post->ID, $pmpro_pages)) { wp_redirect( 'http://www.example.com/mypage', 301); } } }REplace http://www.example.com/mypage with your url
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Try with this snippet
COPY CODEadd_action( 'template_redirect', 'my_membersip_restrict' ); function my_membersip_restrict() { global $pmpro_pages, $post; if ( is_user_logged_in() && !pmpro_hasMembershipLevel() ) { if (isset($post->ID) && !in_array($post->ID, $pmpro_pages)) { wp_redirect( pmpro_url() ); } } }Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
Moderator@jokerette if the pages are rendered thru masonry grid yes
Hi KAStyles,
What do you mean by standard WordPress read more feature ?
You can open a new ticket form menu -> Get Support -> Kleo ->
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
We already are waiting for rtmedia to give a solution to this
I will announce you
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Kleo doens’t have these features, but you can look for a plugin that can do that from example : https://wordpress.org/plugins/ultimate-tables/screenshots/
Cheers
R.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts