ktsixit
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show only if logged into password protected page?Hi Kahil, I have the same question. Did you find a solution to this one?
I tried to fix it on my own but didn’t make it.
I found that there’s some kind of problem with the form in which we insert the image. For some reason the file inserted in that input field is not recognized. It’s like submitting the form without having selected a new image for uploading. That’s why the old image is not replaced with the new one.
The function handling the image replacement is called updateBannerFromLocal() and you can find it in wp-bannerize/Classes/wpBannerizeAdmin.php file. In case you want to test it yourself.
Thank you for your response anyway:)
Forum: Plugins
In reply to: [WP Bannerize] [Plugin: WP Bannerize] Existing banners can't be overwrittenI tried to contact them about this bug. I hope that they will fix it soon too. Thank you for your response:)
Forum: Plugins
In reply to: [WP Bannerize] [Plugin: WP Bannerize] Editing ImageI have the same problem. Did you find any solution to this??
Forum: Plugins
In reply to: [WP Bannerize] [Plugin: WP Bannerize] Existing banners can't be overwrittenHi owcv, did you found any solution to this?
I have the same problem too. Did you find any solution to this??
Forum: Fixing WordPress
In reply to: get_the_category_by_ID errorcheckout this post page
The code that gives the category name is the following:
$top_category_ids = get_top_category_ids(); $categories = wp_get_post_categories($post->ID); foreach($categories as $category_id){ if($category_id != 1 && in_array($category_id,$top_category_ids)){ $parent_category_id = $category_id; } } $category_name = get_the_category_by_ID($parent_category_id);
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Static Blog Title not working!I have the same problem. All titles are working fine except from Blog page. Did you find any solution?
Forum: Fixing WordPress
In reply to: Add jquery effects on default wp menuThanks a lot for your help Oleg. Your suggestion worked:)
But could you also explain me why “$” failed, as soon as I’m already loading jquery in my website? Why should I use “jQuery” instead?
Thank’s again!
Forum: Plugins
In reply to: [Coin Slider 4 WordPress] Slider Error with 3.1.3I have the same problem, did you ever found a solution to this? I noticed that the slideshow in your page works ok now.
Forum: Fixing WordPress
In reply to: web.config file neededHave you found a solution to this? I accidentally deleted my we.config file too
Forum: Plugins
In reply to: [Plugin: DM Albums] Cannot create New AlbumAnyone?
I get the following message:
“There are no existing albums in your DM Albums? album folder. Create your first album by uploading photos into an album in the Update Existing or Add New Album section below. For more information read the help section. “although I’ve just created an album and have uploaded some images in it, the plugin can’t find it. The images are regularly uploaded on server.
I also noticed, that after I browse and select an image, the “Pending…” proccess never ends.
Is there anything I can do to fix it?
I have the same problem. I am using greek characters and utf-8 encoding too.
Forum: Fixing WordPress
In reply to: Can’t accress AdminI’m having the same problem with 2.9.2 version running on localhost.
The error occurred while I was changing some css styles. Both administration and website are not working. What should I do???
Warning: require_once(C:\xampp\htdocs//wp-includes/classes.php) [function.require-once]: failed to open stream: No such file or directory in C:\xampp\htdocs\Technofo on line 46The files are in C:\xampp\htdocs\Technofot folder and NOT in C:\xampp\htdocs\Technofo. I don’t know if this is relative to the issue or not, I just think I should mention it.
Please help!!
Forum: Themes and Templates
In reply to: How to Create new Widget AreaThe template I’m using has already done what this page says. The only useful thing for me is the last section:
I have a theme with more than one sidebar. How do I make them all dynamic?
Oh, that’s easy. Instead of register_sidebar() you should use register_sidebars(n) where n is the number of sidebars. Then place the appropriate number in the dynamic_sidebar() function, starting with 1. (There are several other ways to use these function. See the API).
You can even give your sidebars names rather than numbers, which lets you maintain a different set of saved sidebars for each theme. But if you need to know so much about the plugin, why aren’t you reading the API?
But this is too general and I don’t understand exactly what kind of code I should add in functions.php file. The register_sidebar function is like this one:
if ( function_exists('register_sidebar') ) register_sidebar(array( 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => '</li>', 'before_title' => '<h5 class="widgettitle">', 'after_title' => '</h5>', ));