ssamik
Forum Replies Created
-
Forum: Plugins
In reply to: [Private Messages For WordPress] Doesn't send emails on new message?turns out I had a problem with the included sendmail function in WP. Installed a plugin to make use of SMTP instead, and now it works without problems.
I used this plugin: https://coffee2code.com/wp-plugins/configure-smtp/
Forum: Plugins
In reply to: [Private Messages For WordPress] Doesn't send emails on new message?Ok.. I found the lines in send-page.php and did the changes suggested in the linked thread.
But, as for ferreira2u the edits does nothing to the problem. Still no emails are beeing sent.
Any suggestions?
There should be a way to override the language settings. ??
I Solved it with renaming multiple_sidebars-en_US.mo and multiple_sidebars-en_US.po to correspond to my language nb_NO
multiple_sidebars-nb_NO.po and multiple_sidebars-nb_NO.moIn witch file did you do this change? I can’t find a file with that many lines..
Forum: Plugins
In reply to: [Private Messages For WordPress] Doesn't send emails on new message?I’m having this same problem, no emails are beeing sent.
I havent tried that fix from the linked post, as I can’t fint a file with that many lines in it. Witch file have you done the edits in?
Forum: Plugins
In reply to: [NextGEN Scroll Gallery] [Plugin: NextGEN Scroll Gallery] Text under imagesI now see that it somewhat works. But when useCaptions is enabled, picture scrolling dosent work in Opera.
Also, only part of the description is displayed.Is there some way to fix this so it works in most browsers, and display the complete description?
Forum: Plugins
In reply to: [NextGEN Scroll Gallery] [Plugin: NextGEN Scroll Gallery] Text under imagesI’m having this same issue.
Any hints on how to display the picture description?Forum: Plugins
In reply to: [No Page Comment] [Plugin: No Page Comment] Will this work on newest version?Thanks for your answer. I’ll try it out. Appreciate your work and efforts.
I’m considering your premier plug in but i would like to know before I try it out; does it support Nets as payment provider? Link to Nets
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Problems updatingBump? :p
I’m the only one with this problem apparenty…Forum: Fixing WordPress
In reply to: how to show child pages?Solved… Found this page: https://codex.www.ads-software.com/Template_Tags/wp_list_pages
Used this one:
<?php if($post->post_parent) $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0"); if ($children) { ?> <ul> <?php echo $children; ?> </ul> <?php } ?>
to list subpages even if on a subpage, and it works like a charm.
Forum: Themes and Templates
In reply to: Removed sidebar, what to do to actually free the space?Thanks to IRC and “rmccue”, I now know the answer. ??
The steps are as follows: Remove
<?php get_sidebar(); ?>
from page.php, change all instances of narrowcolumn to widecolumn (I did it in all php files, and in styles.css) and lastly, delete sidebar.php.Forum: Themes and Templates
In reply to: how to remove kubrick sidebar?Did you ever find a solution? I’m trying the same thing, but I cant seem to get rid of it completely.