Tanveer
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Insert a 4th cercle in the home page@summaartis, can you please share the way you did it or plan to achieve this? I am also trying to achieve this for one of my clients but don’t have good PHP skills.
TIAForum: Themes and Templates
In reply to: [Customizr] Can we have more then three featured pages?I will love to even do that can you give me some incite into it or a little details about how to add an extra area?
Forum: Networking WordPress
In reply to: Multisite – No styles ?I was facing the same problem, and did copy the .htaccess code from here and it worked for me fine .. should work for you as well.
I did try
AllowOverride Fileinfo Options All
, but caused 500 error.Forum: Fixing WordPress
In reply to: Remove Base Category from Permalinksnope, here is the .htaccess file
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressForum: Fixing WordPress
In reply to: Remove Base Category from Permalinks@samateo, probably you have not got what I am asking? let me say it again, it is already changed now I want to restore the default?
Forum: Fixing WordPress
In reply to: Restricting Admin User CapabilitiesThanks for your response but don’t want to use any plugin and the other thing is I want to restrict it only for specif users and not all of the users belonging to Admin Group .. will be hiding few menu options and then want to make sure that the users don’t have access to those hidden options even if they enter a direct URL.
Forum: Installing WordPress
In reply to: Call to undefined function wp_kses normalize entities()I have just uploaded the WordPress files once again, and am able to get rid of this ridiculous problem. Thanks all
Forum: Fixing WordPress
In reply to: How to avoid clicking of main menu items?Yes, the code will work and server your purpose you need to put this code in the
head
section [header.php]. You need to replace.page-item-7
for all the top level items you don’t need to be click-able [Not really, will reference to current page].Forum: Fixing WordPress
In reply to: How to avoid clicking of main menu items?Just for knowledge sharing may be it proves helpful for someone else I did this by adding a JQuery Script
<script type="text/javascript"> jQuery(document).ready(function(){ jQuery('.page-item-7 a:first').attr('href', '#'); }); </script>
Obviously by adding reference to all the menu-items [pages in my case], I did find this code from somewhere but don’t remember now. I know it can be improved to dynamically skipping the menu items having some ‘chile nodes’ but with my limited knowledge of JS I could not accomplish the same and would appreciate if someone can go a step even further to achieve this.
I am using a child theme of Twenteyten 1.2 [the version build with WP 3.1]Forum: Fixing WordPress
In reply to: WordPress Installation is corrupt?I did sort this out myself, it started to happen when I tried to overload to index.php [as guided in the comments section] by placing a file loop-index.php in the root folder of the Child Theme [based on TwentyTen v1.2].
It is given here for the benefit of may be someone else suffers through the same problem.Forum: Fixing WordPress
In reply to: WordPress Installation is corrupt?No, it just keeps on trying to load the page. The site is running on localhost currently.
Forum: Fixing WordPress
In reply to: Translating TEXT Widget contents ..Yes, have seen qtranslate and it presents a very good way out for the translation [provides a short codes like ([:en] for english and [:fr] for Francais) of TEXT widget, which is working like a charm.
Now the challenge being faced is to translate the things like Month and Day Names and the Plugin appears to check
Automatically check for .mo-Database Updates of installed languages.
But even then the entries are appearing in English only any pointer to sort this out will be appreciated?
Forum: Networking WordPress
In reply to: Adding posts to all the sub-blogs on a MS installationNo, I don’t have any plugin installed and will code the functionality myself. Yes, will have to write the code to write the posts data from the text [DELIMITED] or XML file as may be appropriate. I have done almost a similar project for WP 2.8+ using the table prefix for the different domains.
Now have to do almost the same for a 3.1+ installation with 180+ sub-domains and nothing like table prefix sort of thing available – but blogid. I am not sure how the the ‘Domain Mapping’ plugin arranges the different domains under a main site.
One other option could be to place the listings in a single main site and share it across the domains? any comments on this will be appreciated.Forum: Fixing WordPress
In reply to: Widgetizing the content area?I wonder if there is some tutorial or an article to describe this in a bit more detail. I have been trying myself for quite some time but without any success.
TIAForum: Fixing WordPress
In reply to: Full height sidebar in Sandbox@thulefoth: I did try to use that faux columns approach to my advantage but could not make it to work for me .. may be too dumb for that, anyway good luck to you.