Kirby Tokin
asked 10 years ago

Hi.
I’ve searched this Q&A section, but I can’t seem to find any good answer.. 
 
I need to remove the meta and links underneath the plugin, can you help me with this problem? I’ll attach a thumbnail to see the problem.
 
Best regards
KirbyT
 
 
Meta

4 Answers
Guru
answered 10 years ago

Dear @kirby,
It looks like this meta information is coming from your template.
Just try to test the plugin with the twentytwelve, or twentythirteen to see if it still shows the meta info.
Regards

Kirby Tokin
replied 10 years ago

Thank you for your reply @Guru! I tried to do that earlier but still got the meta, tried again now and it looks like it’s the template like you’re sying..

Cheers!

DominicStaff
answered 10 years ago

@ Guru ! Thank for your help. I appreciate it.
@ Kirby !
Please send me your site for further checking. We will help you resolve this issue.

Kirby Tokin
replied 10 years ago

My website is:

Guru
answered 10 years ago

Hi @Kirby,
Turns out it is the sidebar showing up on your page.
Possible solutions:
1. Turn off the sidebar from the widgets menu.
2. If sidebars are controlled through your theme, try that.
3. Go to <your site>/wp-content/plugins/dw-question-answer/inc/templates/default/content-end-wrapper
check line51 

default:
echo ‘</div></div>’;
get_sidebar();  –>make this to     /*get_sidebar();*/ 
break;

this is final result
default:
echo ‘</div></div>’;
/*get_sidebar();*/
break;

And see how it works.
Best regards,

Kirby Tokin
replied 10 years ago

That works! Thank you for your help @Guru 🙂

Do you also know anything about why the translation is not right on my website?

Guru
replied 10 years ago

@Kirby Glad I could help!

As for the translation there could be so many reasons, its mainly to do with your configuration and the them translation files.

I suggest you debug by changing theme, disabling all plugins, resetting configuration to see if it helps.

regards

Kirby Tokin
replied 10 years ago

I've already re-installed everything on my server, reinstalled the plugin and theme, then did every step of translation again, but it still don't work.. I usually don't have any problem with the translations, but now I am stuck…

I found the sentence on the frontpage in filter.php, but it still won't change when I translate it there.. Any ideas why? Something I've overlooked perhaps?

Guru
replied 10 years ago

@Kirby I think you have resolved the issue, as I can’t see “You can ask question here” any longer

Kirby Tokin
replied 10 years ago

Yes, finally works on another computer! Thank you again for your help @Guru!

DominicStaff
answered 10 years ago

@ Guru ! Thank for your help. I appreciate it. 🙂
@ Kirby !
I think you have resolved this issue.

Powered by DW Question & Answer Pro