Forum Replies Created
-
Author
-
taiger
ParticipantOk, I have now updated to the latest wordpress and kleo. So what is the solution to this. Thanks
taiger
Participantyes it looks like my new contact form.. Called ARForms.. this plugin is important to us..do you know of a quick fix to solve the conflict.
Thanks guys
taiger
ParticipantHi. I have just upgraded to the latest version and still it does not work..
http://www.5starweddingdirectory.com/mywedding
user: seventhqueen2
pass: t2*xHkaK2g!domOZ*aO8y3iftaiger
ParticipantYes I have updated K and VC, running WP v 4.3.3 (because when i upgrade, my meta title gets messed up, and i do not have a fix for it yet)
taiger
Participanthttp://www.5starweddingdirectory.com/portfolio/ small thumbnails
http://www.5starweddingdirectory.com/luxury-honeymoon-and-travel/
so you can see that teh site is not responsive as it used to be..
taiger
Participanttaiger
Participanttaiger
ParticipantHi guys, any news on the new V4 update.
what is the best plugin to use for job site.. and that will integrate with Kleo but most importantly to have a one user login.
T
taiger
ParticipantHi again, still no joy i am afraid. i keep seeing blank screen when i add the code,
January 30, 2016 at 09:15 in reply to: search shows visual composer coding on the excet area #101320taiger
Participantps.. when is the update due to arrive..
T
January 30, 2016 at 09:14 in reply to: search shows visual composer coding on the excet area #101319taiger
Participantcan you also check why the search field does not show the little spinning wheel and the search dropdown does not show the category of the search.
January 30, 2016 at 09:13 in reply to: search shows visual composer coding on the excet area #101318taiger
ParticipantFTP Username: seventhqueen@5starweddingmagazine.com
FTP server: http://ftp.5starweddingmagazine.com
FTP & explicit FTPS port: 21pass: IX$1%PZfNjkg6Xsfbjqsf%9M
January 28, 2016 at 18:22 in reply to: search shows visual composer coding on the excet area #101031taiger
ParticipantHi did you see the visual editor short code on the search drop down
January 28, 2016 at 16:17 in reply to: search shows visual composer coding on the excet area #100999taiger
Participanthttp://www.5starweddingdirectory.com
It show up on the search field drop down results
taiger
ParticipantHi the directory plugin has had a number of updates but it did not fix the issue..
When we usethemforest Newspaper theme for example (and other themes we have tested) it all works ok.. the directory plugin author says that it is a kloe issue..
Can you please take a look at this..
my test site with Newspaper and Kloe is on:
http://5starweddingtv.com/wp-admin
seventhqueen
P^FSiq&TI8sDH7055Ib%t)gK
If you can test, switch themes if you like just to see what it is that is causing the issue..
It is the directory pags that do not change the meta title…
http://5starweddingtv.com/directory-page/listing-page/london/wedding-luxury/
January 27, 2016 at 21:45 in reply to: search shows visual composer coding on the excet area #100869taiger
Participantportfolio on the search shows the code
January 27, 2016 at 21:44 in reply to: search shows visual composer coding on the excet area #100868taiger
Participantok.. it is but it still shows the code
January 26, 2016 at 16:20 in reply to: Debug log file is showing errors, and the file is getting massive with the error message generated #100565taiger
Participantthanks– sorted
January 25, 2016 at 18:49 in reply to: Debug log file is showing errors, and the file is getting massive with the error message generated #100391taiger
Participantnot sure what to look for
<?php
/**
* @package WordPress
* @subpackage 5starweddings
* @author 5starweddings <info@5starweddingdirectory.com>
* @since 5starweddings 1.0
*//**
* 5starweddings Child Theme Functions
* Add custom code below
*/
echo get_post_meta( $post->ID, ‘_wp_attachment_image_alt’, true );
add_filter(‘bwp_minify_style_ignore’, ‘exclude_my_css’);function exclude_my_css($excluded)
{
$excluded = array(‘kleo-fonts’);
return $excluded;
}/* Disable AJAX Theme options save which causes a problem */
add_filter( ‘kleo_theme_options_ajax’, ‘__return_false’ );function kleo_title()
{
$output = “”;
if (is_tag()) {
$output = __(‘Tag Archive for:’,’kleo_framework’).” “.single_tag_title(‘’,true);
}
elseif(is_tax()) {
$term = get_term_by(‘slug’, get_query_var(‘term’), get_query_var(‘taxonomy’));
$output = $term->name;
}
elseif ( is_category() ) {
//$output = __(‘Archive for category:’, ‘kleo_framework’) . ” ” . single_cat_title(”, false);
$output = single_cat_title(”, false);
}
elseif (is_day())
{
$output = __(‘Archive for date:’,’kleo_framework’).” “.get_the_time(‘F jS, Y’);
}
elseif (is_month())
{
$output = __(‘Archive for month:’,’kleo_framework’).” “.get_the_time(‘F, Y’);
}
elseif (is_year())
{
$output = __(‘Archive for year:’,’kleo_framework’).” “.get_the_time(‘Y’);
}
elseif (is_author()) {
$curauth = (get_query_var(‘author_name’)) ? get_user_by(‘slug’, get_query_var(‘author_name’)) : get_userdata(get_query_var(‘author’));
$output = __(‘Author Archive’,’kleo_framework’).” “;if( isset( $curauth->nickname ) ) {
$output .= __(‘for:’,’kleo_framework’).” “.$curauth->nickname;
}
}
elseif ( is_archive() ) {
$output = post_type_archive_title( ”, false );
}
elseif (is_search())
{
global $wp_query;
if(!empty($wp_query->found_posts))
{
if($wp_query->found_posts > 1)
{
$output = $wp_query->found_posts .” “. __(‘search results for:’,’kleo_framework’).” “.esc_attr( get_search_query() );
}
else
{
$output = $wp_query->found_posts .” “. __(‘search result for:’,’kleo_framework’).” “.esc_attr( get_search_query() );
}
}
else
{
if(!empty($_GET[‘s’]))
{
$output = __(‘Search results for:’,’kleo_framework’).” “.esc_attr( get_search_query() );
}
else
{
$output = __(‘To search the site please enter a valid term’,’kleo_framework’);
}
}}
elseif ( is_front_page() && !is_home() ) {
$output = get_the_title(get_option(‘page_on_front’));} elseif ( is_home() ) {
if (get_option(‘page_for_posts’)) {
$output = get_the_title(get_option(‘page_for_posts’));
} else {
$output = __( ‘Blog’, ‘kleo_framework’ );
}} elseif ( is_404() ) {
$output = __(‘Error 404 – Page not found’,’kleo_framework’);
}
else {
$output = get_the_title();
}if (isset($_GET[‘paged’]) && !empty($_GET[‘paged’]))
{
$output .= ” (“.__(‘Page’,’kleo_framework’).” “.$_GET[‘paged’].”)”;
}return $output;
}/** Add Page Number to Meta Description to avoid Duplication **/
if ( ! function_exists( ‘t5_add_page_number’ ) )
{
function t5_add_page_number( $s )
{
global $page;
$paged = get_query_var( ‘paged’ ) ? get_query_var( ‘paged’ ) : 1;
! empty ( $page ) && 1 < $page && $paged = $page;$paged > 1 && $s .= ‘ – ‘ . sprintf( __( ‘Page %s’ ), $paged );
return $s;
}
add_filter( ‘wpseo_metadesc’, ‘t5_add_page_number’, 100, 1 );
}function my_custom_member_list_sort( $ret ) {
$ret[‘type’] = ‘alphabetical’;
return $ret;
}
add_filter( ‘bp_after_has_members_parse_args’, ‘my_custom_member_list_sort’ );January 16, 2016 at 19:20 in reply to: manually adding a user does not show up on the front end #98871taiger
Participantfunction my_custom_member_list_sort( $ret ) {
$ret[‘type’] = ‘alphabetical’;
return $ret;
}
add_filter( ‘bp_after_has_members_parse_args’, ‘my_custom_member_list_sort’ );January 16, 2016 at 19:03 in reply to: manually adding a user does not show up on the front end #98868taiger
Participantis there a way to set it to be alphabetical on the advance search
January 16, 2016 at 19:01 in reply to: manually adding a user does not show up on the front end #98867taiger
ParticipantAHA… my oh my.. hours trying to figure that out..
Thanks a lot.. and have a great day..
ps.. any new updates soon… would be great to have a video page/layout
January 16, 2016 at 18:52 in reply to: manually adding a user does not show up on the front end #98863taiger
Participantdo you have the login info.
http://www.5starweddingdirectory.com/members/
http://www.5starweddingdirectory.com/members/charlotte-elise-luxury-weddings-and-events/
http://www.5starweddingdirectory.com/mywedding
seventhqueen2
&AkUg(5#8BtC4*Fe0!TrVk#QJanuary 16, 2016 at 18:46 in reply to: manually adding a user does not show up on the front end #98862taiger
Participanti tried it on my test site as well and it does the same thing..
January 16, 2016 at 18:45 in reply to: manually adding a user does not show up on the front end #98861taiger
Participanthi yes i add it on the backend.. and then try to see it on the front but nada.. i search and still not showing up
December 17, 2015 at 08:58 in reply to: visual composer and places not showing on the edit page #93797taiger
Participanthi can you remove the url on the top area please
taiger
ParticipantAnother thing that i have noticed is that when i add an element from VC, it hangs and nothing is added to the content area..
-
AuthorPosts