Hi Suhiro,
Can you tell me more details about it? Any screenshot will be useful.
Please note that, only when you select your texts then the Insert Hyperlink button will be active and clickable, otherwise you cannot click this button.
Regards
Thread Starter
suhiro
(@suhiro)
Thanks for reply!
No need to do a screenshot. I select a text and then press hyperlink button and just nothing happens, it is simply doesn`t work. Btw, in previous versions pressing the hyperlink button cleared all the text form, now it just do nothing
Hi Suhiro,
We are using the latest version of our plugin on designwall.com/question. As you can see, the Insert Hyperlink button works fine on our site (a popup should be opened when you click Insert Hyperlink button). Can you give me your site URL for checking?
Thread Starter
suhiro
(@suhiro)
I see now, I don`t have any popups after clicking the button. Here is a link http://feetch.com/ask
As you can see in this screenshot http://i.imgur.com/RIvISoZ.png, we have a javascript error which comes from your feetch theme. This error breaks all js functions on your site so please remove it and check your editor again.
Regards
I can not able to change the url in single question page.I want it like “home url/forum/how-to-fetch-post-category in wordpress” to “home url/question/how-to-fetch-post-category in wordpress”.When I changed it from plugin settings page,it also changes the breadcrumb to question from forum.I have added this code to change the bresdcrumb to “Forum”:
$forum_url=home_url().’/?page_id=2126′;
if ( get_post_type() == ‘dwqa-question’ ) {
printf($link, $forum_url, ‘Forum’ );
} else if (!empty($portfolio_page_id)) {
echo ‘‘.get_the_title($portfolio_page_id).’‘;
} else {
printf($link, get_post_type_archive_link( $post_type -> name ), $label);
}
I want breadcrumb and url to to show forum instaed of question.