This topic has 18 replies, 2 voices, and was last updated 9 years by wilfriedMarseille.
-
Author
-
November 30, 2015 at 07:08 #90026wilfriedMarseilleParticipant
Hello in a old post a moderator say me to put image in all post put this code.
`add_action(‘kleo_before_content’,’my_header_image’);
function my_header_image() {
echo ‘<img class=”banner” src=”http://www.zikrea.com/wp-content/uploads/2015/10/Un_blog_mao_associatifOK.jpg” />’;
}`And it was good so i try this code to put a revolution slider in all my post
`add_action(‘kleo_before_content’,’my_header_image’);
function my_header_image() {
echo ‘[rev_slider alias=”acc3″]’;
}`And i saw [rev_slider alias=”acc3″] write in the place of image so i try the same code without ‘ ‘ at the begining and the end of [rev_slider alias=”acc3″] like this code
`add_action(‘kleo_before_content’,’my_header_image’);
function my_header_image() {
echo [rev_slider alias=”acc3″];
}`And i saw a white pages with that. So how can i put a revolution slider in all my pages please ?
If you love Ableton check my blog :
www.zikrea.comNovember 30, 2015 at 17:01 #90104RaduModeratorHi,
TRy with this snippet
COPY CODEfunction KleoAddSlideUnderPosts( $content ) { if( is_single() ) { $revslidershortcode = '[rev_slider alias="acc3"]'; $content .= $revslidershortcode; } return $content; } add_filter('the_content', 'KleoAddSlideUnderPosts');
Let me know
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 30, 2015 at 17:16 #90110wilfriedMarseilleParticipantNo i have nothing with this code. The website workgood but i don’t get my slider ..
If you love Ableton check my blog :
www.zikrea.comNovember 30, 2015 at 21:27 #90181RaduModeratorHi,
Can you please provide admin credentials ?
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionDecember 1, 2015 at 16:11 #90325RaduModeratorhi,
It seems that i don’t have access to editor , please provide FTP.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionDecember 3, 2015 at 17:45 #90927RaduModeratorUnable to connect, please provide correct ftp details, exact username, hostname port etc, test it before post here.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionDecember 14, 2015 at 14:54 #93126wilfriedMarseilleParticipantHello,
the logins is good let me know when you test it thanks you 🙂If you love Ableton check my blog :
www.zikrea.comDecember 14, 2015 at 19:11 #93197RaduModeratorIt’s done,
I’ve used this function
COPY CODEfunction KleoAddSlideUnderPosts( $content ) { if( is_single() ) { $revslidershortcode = do_shortcode('[rev_slider alias="acc3"]'); $content .= $revslidershortcode; } return $content; } add_filter('the_content', 'KleoAddSlideUnderPosts');
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionDecember 16, 2015 at 14:06 #93616wilfriedMarseilleParticipantHello,
I put your code in function.php of my child theme. And Is not working …. I got a white pageIf you love Ableton check my blog :
www.zikrea.comDecember 16, 2015 at 18:33 #93670RaduModeratorHi,
The code worked i’ve setted up for you and i’ve tested and it worked fine
Please remove the code that you have pasted and paste again from here http://pastebin.com/raw/7RfqDRpU
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionDecember 16, 2015 at 19:44 #93688wilfriedMarseilleParticipantHi
Thanks you but i don’t want my slider under post. I would like get it at the top of post like the first than we see but the first in an image…If you love Ableton check my blog :
www.zikrea.comDecember 16, 2015 at 20:01 #93691RaduModeratorHi,
Replace with this
http://pastebin.com/raw/NDpTTCGm
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionDecember 23, 2015 at 10:58 #95025wilfriedMarseilleParticipantHi,
Do you test it ? Because when i replace with the code in the last link than you give me, i got a white page.
COPY CODEfunction KleoAddSlideUnderPosts( $content ) { if( is_single() ) { $revslidershortcode = do_shortcode('[rev_slider alias="acc3"]'); $content = $revslidershortcode . $content; } return $content; } add_filter('the_content', 'KleoAddSlideUnderPosts');
If you love Ableton check my blog :
www.zikrea.comDecember 23, 2015 at 11:04 #95026wilfriedMarseilleParticipantSorry it was an error of me. Is Work on now. Thanks you 🙂
If you love Ableton check my blog :
www.zikrea.com -
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.