Forum Replies Created
-
Author
-
November 13, 2014 at 12:49 in reply to: how to hide the footer on the automatic member activity stream page #35306NormanParticipant
thanks !! (i forgot that i renamed the activity page)
November 12, 2014 at 13:56 in reply to: how to display related articles OVER and not UNDER post #35184NormanParticipantcool man. you are the php-master 😉 thanks it works ! have a nice one.
NormanParticipantDear SHARMSTR I confirm you where right
the plugin “NextScripts: Social Networks Auto-Poster” created the problem (a plugin that shares posts to social media pages like TUMBLR, FACEBOOK ETC.)
please close the topic. thank you
NormanParticipantdear sharmstr, i think i have all the informations i need now, but it will take me some time to make it work. i will close this topic now. if i have any good solution code i will paste it here for the community. thanks man
NormanParticipanthey you are right I totally forgot to make a page-parts folder in my child theme !!!!!!
It is moving NOW – that’s great. Only thing that is bothering me is that it displays a text now over the related posts saying: “cleo-carousel-post-div”
see attachment. any idea how to get rid of that without destroying the code ? Thanks so muchAttachments:
You must be logged in to view attached files.NormanParticipantI add the code but it has no effect ( I also deleted my cache )
Attachments:
You must be logged in to view attached files.NormanParticipantWhere exactly should I add it ?
kleo-carousel-post div<?php
$categories = get_the_category($post->ID);if (!$categories) {
return;
}
?><section class=”container-wrap”>
<div class=”container”>
<div class=”related-wrap”>
<?php
$category_ids = array();
foreach($categories as $rcat) { $category_ids[] = $rcat->term_id; }$args=array(
‘category__in’ => $category_ids,
‘post__not_in’ => array($post->ID),
‘showposts’=> 8,
‘orderby’ => ‘rand’ //random posts
);query_posts($args);
if ( have_posts() ) : ?>
<div class=”hr-title hr-long”><abbr><?php _e(“Related Articles”, “kleo_framework”);?></abbr></div>
<div class=”kleo-carousel-container dot-carousel”>
<div class=”kleo-carousel-items kleo-carousel-post” data-min-items=”1″ data-max-items=”6″>
<ul class=”kleo-carousel”><?php
while ( have_posts() ) : the_post();get_template_part(‘page-parts/post-content-carousel’);
endwhile;
?></div>
<div class=”carousel-arrow”>
<i class=”icon-angle-left”></i>
<i class=”icon-angle-right”></i>
</div>
<div class=”kleo-carousel-post-pager carousel-pager”></div>
</div><!–end carousel-container–><?php
endif;// Reset Query
wp_reset_query();
?>
</div>
</div>
</section>NormanParticipantthanks I managed to change the background color with your code. I used #FFF instead of #333 to make it white.
I still have a problem for those black fields where the comments are displayed and entered ( see attached new screenshot ) you also have a code for those ?
Attachments:
You must be logged in to view attached files.NormanParticipantI think it must be the lightbox viewer from rtMedia !
but how can I change the color ?rtMedia offers a Custom CSS window. Any idea what to place ?
NormanParticipantthis one works !!
I add this in the kleo- child theme css
.kleo-transform .animated {
opacity: 1;
}thanks !
NormanParticipantOh I see. That must be the problem !! I just deleted the BUDDYPRESS ACTIVITY PLUS plugin a couple of days ago. Users where confused about the upload button- I decided to not use it anymore from now on.
Thanks so much !
NormanParticipantSecond screenshot of the problem
Attachments:
You must be logged in to view attached files. -
AuthorPosts