ganim
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changed File/Folder owner and 403 Forbidden pageNo one?
Forum: Fixing WordPress
In reply to: problems with my menuThere is a line in file:
https://www.wooden-workshop.co.uk/wp-content/themes/kingsize/style.css#navbar li ul li { padding: 0 0 10px 0;
change it to:
#navbar li ul li { padding: 0 0 0px 0;
And another line:
#navbar li ul li a { padding: 12px 0px 8px 30px;
Change it to:
#navbar li ul li a { padding: 8px 0px 8px 30px;
This will shorten your submenus so that they can fit
Forum: Fixing WordPress
In reply to: unable to log adminProbably there has been something changed in your wp-config.php file. Mine has nothing to do with headers.
So have a look at your wp-config file. There should be any
header();
or session stuff.Forum: Fixing WordPress
In reply to: problems with my menuEither you play with your template css file to make the submenu shorter then maybe menu can fit to the screen OR you may reorganise your menu structure to have 5-6 items each submenu.
Forum: Plugins
In reply to: [Plugin: qtranslate] Category pages not workingPLEASE HELP ME!!! I STILL COULDN’T FIND ANY SOLUTION. ??
Forum: Plugins
In reply to: [Plugin: qtranslate] Category pages not workingno idea?
Forum: Fixing WordPress
In reply to: WP 3.0 – Custom Links for Images within Galleryi’ve fixed this issue thanks to this post;
https://geekeemedia.com/wordpress/add-a-custom-url-to-your-wordpress-gallery-images/
Forum: Fixing WordPress
In reply to: WP 3.0 – Custom Links for Images within Galleryis there a solution to fix this or this will be general problem for those who wants to add custom link to image in a gallery????
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Ajax submit does not worki did try a lot of stuff and give up with contact form 7.
i am using FormBuilder now and it is great ??thanks anyway, for your interest
Forum: Plugins
In reply to: [Plugin: Contact Form 7] data is null – no ajax message & no e-mailsame error, any help.
pleaseForum: Fixing WordPress
In reply to: Picture is not showing up in categories?found out that this way your posts wont be shown proper, what i did to fix is to delete a
</div>
after<?php the_content(); ?>
.Forum: Fixing WordPress
In reply to: Picture is not showing up in categories?I had exactly the same problem. And i fixed it like this;
-What you should do is use editor.
-Edit Archives (archive.php)
-Find the row<?php the_excerpt(); ?>
-Replace it with<?php the_content(); ?>
i am a newbie wordpresser i think this way you will post the whole post on the archive page. At least this was enough for me.
Cheers,
Ganim.