Search
Close
AI Search
Classic Search
 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:

AI Assistant
Notifications
Clear all

Shortcodes not working inside [nextpage] tag

7 Posts
3 Users
0 Reactions
3,891 Views
 CK13
(@CK13)
New Member
Joined: 12 years ago
Posts: 4
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
  [#14]

I use shortcodes in my posts to display terms from certain taxonomies, but when used between [nextpage] tag, instead of the terms i get the shortcode itself.

Is it supposed to work with shortcodes?
The shortcode is created by me so i might have missed something.

LE: when i go to a different page and back to the page with the shortcode, the shortcodes disappear (terms are still not displayed).



   
Quote
 Tom
(@tomson)
Famed Member Admin
Joined: 11 years ago
Posts: 4238
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

Hi,
Thank you for using our plugin, could you please show the example of shortcode you use?



   
ReplyQuote
 CK13
(@CK13)
New Member
Joined: 12 years ago
Posts: 4
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

Shortcode function:
function ck13_fbgm_terms($atts){
global $post;
extract(shortcode_atts(array(
'ck_term' => '',
'ck_sep' => ', ',
'ck_before' => '',
'ck_after' => ''
), $atts));

$show_the_terms = "";
$show_the_terms .= get_the_term_list( $post->ID, "$ck_term", "$ck_before", "$ck_sep", "$ck_after" );
return $show_the_terms;
}

function register_shortcodes(){
add_shortcode('fbgm-terms', 'ck13_fbgm_terms');
}
add_action( 'init', 'register_shortcodes');

Shortcode i use in posts: [fbgm-terms ck_term="audio"]
What i see in post inside [nextpage] tag: [fbgm-terms ck_term="audio"]



   
ReplyQuote
 Tom
(@tomson)
Famed Member Admin
Joined: 11 years ago
Posts: 4238
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

Are you sure this shortcode works without [nextpage] shortcode?



   
ReplyQuote
(@gagik)
Active Member Admin
Joined: 11 years ago
Posts: 13
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

Hi,

Thank you for reporting about this issue. We found the reason of it and solved the problem. You can update the plugin in order to fix the issue on your end.
If there is any problem, please just let us know.



   
ReplyQuote
 CK13
(@CK13)
New Member
Joined: 12 years ago
Posts: 4
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

Works but only the first time i'm on the page with the shortcode, when i go to a different page and back to the page with the shortcode, the terms disappear.

http://hentai.pink/test-2/



   
ReplyQuote
(@gagik)
Active Member Admin
Joined: 11 years ago
Posts: 13
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

We noticed that you use “Pagination loading type - Ajax” it makes conflict with the "global $post;" type in the short code functions. Wordpress doesn’t support Ajax with "global $post;". We advise to modify the short code you have and use the following one:

function ck13_fbgm_terms($atts) {
global $post;
if (!empty($_POST['acp_pid'])) {
$id = $_POST['acp_pid'];
}
else{
$id = $post->ID;
}

extract(shortcode_atts(array(
'ck_term' => '',
'ck_sep' => ', ',
'ck_before' => '',
'ck_after' => ''
), $atts));

$show_the_terms = "";
$show_the_terms .= get_the_term_list($id, "$ck_term", "$ck_before", "$ck_sep", "$ck_after");
return $show_the_terms;
}

function register_shortcodes() {
add_shortcode('fbgm-terms', 'ck13_fbgm_terms');
}

add_action('init', 'register_shortcodes');



   
ReplyQuote
 CK13
(@CK13)
New Member
Joined: 12 years ago
Posts: 4
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

Great.
Thanks.



   
ReplyQuote
Share:
Scroll to top