Forum Replies Created
-
AuthorPosts
-
Hi Ismael,
Thank you very much for your help, however I had already managed to solve the problem and it was exactly as you indicated and i would like to share it:// Função prev-next dos portfolios
add_shortcode( ‘prev’, ‘prev_shortcode’ );
add_shortcode( ‘next’, ‘next_shortcode’ );
function prev_shortcode() {
global $post;
$result = get_previous_post_link(
$format = ‘<div class=”nav-previous”>%link</div>’,
$link = ‘<span class=”av-icon-char” style=”” aria-hidden=”true” data-av_icon=”” data-av_iconfont=”entypo-fontello” data-avia-icon-tooltip=”%title”></span>’,
$in_same_term = true,
$excluded_terms = ”,
$taxonomy = ‘portfolio_entries’);
return $result;
}
function next_shortcode() {
global $post;
$result = get_next_post_link(
$format = ‘<div class=”nav-next”>%link</div>’,
$link = ‘<span class=”av-icon-char” style=”” aria-hidden=”true” data-av_icon=”” data-av_iconfont=”entypo-fontello” data-avia-icon-tooltip=”%title”></span>’,
$in_same_term = true,
$excluded_terms = ”,
$taxonomy = ‘portfolio_entries’);
return $result;
}Best regards!
Hi Rob,
Thank you very much for your help, but i do not use the the (avia_post_nav_entries).
As i tried to explain, i use a custom function navigation that was inserted by a shortcode with a code block.Thank you.
Hi!
I did some research and tried to read and learn something to get this working, but i don’t know how to manage this.
I have some portfolio projects with several categories that i set. I gave the portfolio projects is respective categories.
They are working under the menus, if you get a look to the site you will see that.
I really don’t know what else to do, i don’t have the knowlegde to resolve this, there must be something that i’m missing.I just want to say thanks for your help.
Best Regards.
Gabreu
Hey, i’ve tried that and the link disappears from portfolio page.
Regards
GabreuHi Josue, i’m sorry to bore you again with this issue.
As i told you the previous and next post is working in the site, but now i have another relating issue.
I need that it works only in the same category. I followed the codex.wordpress.org instructions but no results.
So the code i have in functions.php is this, and as i told you is working:add_shortcode( ‘prev’, ‘prev_shortcode’ );
add_shortcode( ‘next’, ‘next_shortcode’ );
function next_shortcode($atts) {
global $post;
ob_start();
next_post_link( ‘<div class=”nav-next”>%link</div>’, ‘Next project’ );
$result = ob_get_contents();
ob_end_clean();
return $result;
}function prev_shortcode($atts) {
global $post;
ob_start();
previous_post_link( ‘<div class=”nav-previous”>%link</div>’, ‘Previous project’ );
$result = ob_get_contents();
ob_end_clean();
return $result;
}Can you help again?
Regards
GabreuHey Josue,
Must say that i love this theme, and you are the best.
Keep on the good working.Thank you very much.
Gabreu
Hi Josue!
Yessss i did it! It’s working! It took a while because i do not have much experience with PHP, and my english is not so good, but i did it.
I have to say thank you for this.I also have one task left to finish this site. I have already start a topic few days ago, but have no answer.
I really appreciate your help again. Can we keep talking here or should i guide you to the topic?Best Regards,
Gabreu
Hi Josue,
Thank you for your answer.
I don’t understand most of technical words, what do you mean by wrap a function in a shortcode?Thanks
GabreuHello!
Can anybody help me with this please?
I’m running out of time.
Do you need an admin and password to WP?
Is it necessary to make a new topic?
An answer please.Thank you
Hey Yigit,
We have already install the theme in client’s hosting and you will be able to see it in the link that i provide.
We really appreciate that you could give us a help with the two issues that i’ve mentioned above, these are things that our client requires:1 – The question regarding the present topic.
2 – The question regarding the topic #527285If necessary we will give an admin and password to WP.
Best regards,
Gabreu
Hi! I don’t understand why is this happening.
We are building this website on our hosting, and we have some people that say that our website is also with problems.We have two things to resolve to end this project:
1 – The question regarding this topic
2 – The question regarding the topic #527285We are going to move the site to our client’s hosting, and i’ll send you a new reply, and hope that you can help us with this.
Best Regards
Hello! Did you received my post?
Can you help me with this?Hey, ok.
Hi Yigit!
Maybe i didn’t explain very well, sorry.
What i need is to have the same arrows like the ones in PARTNER/LOGO, but for the POST SLIDER. Just for the POST SLIDER.Please see image: http://giselabreu.com/arrows2.jpg
Best Regards
- This reply was modified 9 years, 1 month ago by gabreu.
October 16, 2015 at 2:51 pm in reply to: Inserting breadcrumbs as shortcode with fullscreenslider #520020Hey!
Thank you Yigit.
Do it and ok.Best Regards
October 15, 2015 at 2:13 pm in reply to: Inserting breadcrumbs as shortcode with fullscreenslider #519312Hi Yigit,
First of thank you!
It works, but this way i have “Title and Breadcrumps” i only need, Breadcrumps.
http://giselabreu.com/breadcrumps.pngRegards,
Gabreu
Hello Yigit, yes it is:
Thank you for your help.Gabreu
Can anyone help with this please?
Hi Basilis,
Maybe i did not explain my self very well.
I have selected portfolio masonry with 3 columns, and i see 3 columns on my imac.
For the ipad my client wants to appear 2 columns (landscape). Now we have 3.
And for mobile phone everything is ok.So what i need is 2 columns for ipad landscape.
Is that possible?
Tks
Gabreu
Hello Yigit!
We have spoke to our client, and sometimes is better not to complicate.
When we removed the preloader, we understand that there’s no need of preloader at all for this action.
So our problem is solved by now.
However if he change his mind, i will create a temporary admin login for you to help me.Thank you for your effort, best regards.
Gisela
Hi,
I’m using a child theme, so i have added the code to both, functions.php and style.css, but is not working.
I believe that the only thing is working is the css. When i click the load more button, no preloader appears.Tks.
Gisela- This reply was modified 9 years, 1 month ago by gabreu.
-
AuthorPosts