Support Forum

new user some questions

GI giorgiokatr
giorgiokatr
Member

hi some questions

1) as an admin i can edit replys of a topic and delete them but i cannot delete entire topic neither move it.

2) i can only lock a topic only if i reply. there is no lock button outside of reply. how can i unlock it?

3) i can make sticky only the reply i make. there is no sticky button for entire topic unless i start a new one. how can i lock a topis started by a member?

4) rate plugin does not work. activated it set the permision to members but nowhere rate button

5) when i click profile it loads a white page with the options not as here…

thanks!!

90 Answers

New Answer

MP Mr Papa
Mr Papa
Member

#1 you do via the forum tools…http://codex.simple-press.com/codex/faq/problem-with-post-edit-buttonow-to/problem-with-post-edit-buttonow-to-delete-a-topic-or-post-and-other-tools/

#2  you can also lock via the forum tools per #1

#3  you can pin topics or posts when creating the topics or posts… or using the forum tools…

#4  rate posts work fine… have you actually enabled it on forums?  since it can be selectively activated on each forum, just edit the forum or forums where you want to have post rating and enable it… edit the forums on forum – forums – manage groups and forums…

#5  white page?   nothing from wp loads?  any errors in server error log file?

GI giorgiokatr
giorgiokatr
Member

i changed my theme to default wordpress theme and everything works perfect

i love simple press i must find a way to use it with my theme but it seems the jQuery library is not functioning correctly

MP Mr Papa
Mr Papa
Member

your theme is probably doing something stupid like loading its own version of jquery instead of the version that wp comes with…

see:  http://codex.simple-press.com/codex/faq/troubleshooting/what-is-this-jquery-conflict/

if you give us a link, we can see if anything obvious…

GI giorgiokatr
giorgiokatr
Member

http://www.travelovergreece.com/forum/kalosorisma/

MP Mr Papa
Mr Papa
Member

yup…  your theme is loading a very, very old version of jquery:

<script src=”http://www.travelovergreece.com/wp-content/themes/GeoPlaces/js/jquery-1.4.2.js” type=”text/javascript”></script>

the version wp loads is 1.7.1…  which will conflict with that very old version of jquery from the theme…  it must not be kept current…

so I would find the location within the theme that its loading its own version of jquery, then we can help you fix it…  its normally in header.php or functions.php…

GI giorgiokatr
giorgiokatr
Member

sorry i missed you somewhere!! do i  need to do something with the js? do you need to give you some login info?

MP Mr Papa
Mr Papa
Member

no, you need to edit your wp theme and correct the loading of jquery…

find that line of code in post above in your theme… most likely in header.php or functions.php

GI giorgiokatr
giorgiokatr
Member

in header it says…

    <script src=”<?php bloginfo(‘stylesheet_directory’); ?>/js/jquery-1.4.2.js” type=”text/javascript”></script>

 

so i must change that line

and make it how?

MP Mr Papa
Mr Papa
Member

right…  replace it with

<?php wp_enqueue_script(‘jquery’); ?>

GI giorgiokatr
giorgiokatr
Member

also inside my thems js folder there is the

jquery-1.4.2.js

 

should i replace it with something else?

GI giorgiokatr
giorgiokatr
Member

now it works thanks

but page now stays for a litle white and then loads

plus looks i have a problem with some thumbnails in galleria in my posts

can i replace the 1.4.2.  version or should i ask my theme developer?

MP Mr Papa
Mr Papa
Member

is the theme dev active?  that version of jquery is quite outdated…

but to keep it working, you could do instead

<?php if (!sp_is_forumpage()) { ?>
<script src=”http://www.travelovergreece.com/wp-content/themes/GeoPlaces/js/jquery-1.4.2.js” type=”text/javascript”></script>
<?php } ?>

that way you still load the old version on non forum pages…  no need to wp enqueue as we will do that anyways…

GI giorgiokatr
giorgiokatr
Member

<script src=”http://www.travelovergreece.com/wp-content/themes/GeoPlaces/js/jquery-1.4.2.js” type=”text/javascript”></script>

i made it

<script src=”http://www.travelovergreece.com/wp-content/themes/GeoPlaces/js/jquery-1.7.2.js” type=”text/javascript”></script>

and inside folder i put the 172 version

now its does not load a white page but still thumb problem

do you suggest any newer version of js? where can i find it?

otherwise i will try your way!!

thanks

MP Mr Papa
Mr Papa
Member

did you try my suggestion??

I would only use the version of jquery that wp ships with…