Edward Caissie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Weird favicon-related problem@stevieontario – I would strongly recommend you review you source code / theme files as there are well over 100 spam links showing in the source of your “About” page.
Just an FYI …
Forum: Fixing WordPress
In reply to: Weird favicon-related problemIt may be useful to know the theme you are using and a true link to your blog … if you are having trouble finding the information my plugin BNS Support may be useful.
PS: I read TLD as referring to “Top Level Domain” in these cases, such as: .com; .org; or, .net as examples.
Forum: Fixing WordPress
In reply to: Comments not workingMy first guess would be your permalink structure …
The comment link is pointing to:
http://www.lionandlamb.fr/http:/www.lionandlamb.fr/sujet/non-classe/#respondThe photos link is pointing to:
http://www.lionandlamb.frcategory/photos/Neither of which will resolve correctly. This page may help more: http://codex.wordpress.org/Using_Permalinks
Forum: Fixing WordPress
In reply to: Not Show Child Category… you did not include the first two lines of the information …
There is nothing more I can offer beyond what I have already written. If you wish more in-depth help, or review, then you might consider a posting at WP Jobs (see link at the bottom of this page); or feel free to contact myself directly.
Forum: Fixing WordPress
In reply to: How to change “Pages” title_li when using wp_list_pages?Glad to help 🙂
Forum: Plugins
In reply to: Styling widget content specificallyYou may be able to edit your theme’s function.php file to add a “common class … to all the instances of the widget content”.
Have a look at this page as a point of reference: http://codex.wordpress.org/Function_Reference/register_sidebars
Forum: Installing WordPress
In reply to: how can i show specific excerpt on a page?I just tested your code with my suggested change and it worked fine on my test server … in what fashion is it not working for you?
Perhaps there are underlying issues? Possibly a link to your blog and the active theme would be helpful …
Forum: Fixing WordPress
In reply to: Bullets in menu and comments in PagesIt appears if you edit your style.css file and change on or near line 176:
.page ul li { list-style-type:disc; }… to:
.page ul li { /* list-style-type:disc; */ }… or:
.page ul li {}Your bullets will go away.
Forum: Installing WordPress
In reply to: how can i show specific excerpt on a page?Have a look at this page in the codex: http://codex.wordpress.org/Function_Reference/get_post
I believe you can simply change:
echo "<p>$my_post->post_content</p>";… to:
echo "<p>$my_post->post_excerpt</p>";Forum: Plugins
In reply to: Adjusting style of a sidebar widget?@bobtem – You would add that to the end of your style.css file.
Forum: Plugins
In reply to: Styling widget content specificallyThe image you provided a link to shows a fairly homogeneous style for the widgets. The border around the widget content in each “block” is the same and would typically be done using the same CSS element.
Now, for example, if you wanted the middle “box” to have a thicker border, or dotted, or none at all you would need to be able to specifically identify that widget.
This may be possible from the theme’s design, or if the widget is using its own “wrapping” CSS element, but if neither of these criteria are being met then you may find it to be a significant challenge to use standard CSS to manipulate the style of the particular widget.
You might consider some sort of java script to accomplish this but that would leave the aesthetics of the site to the choice of your readers having java scripting enabled in their browsers.
Forum: Fixing WordPress
In reply to: Not Show Child CategoryThank you for installing the BNS Support plugin, but you did not include the first two lines of the information it shows which includes your blog’s URL?!
I looked at the code you “uploaded” for me and I am not seeing any issues with the wp_dropdown_categories() function or the calls you are making with it.
Forum: Fixing WordPress
In reply to: Not Show Child CategoryAfter much more testing I am finding that
wp_dropdown_categories()is only accepting one category ID in the ‘child_of’ parameter, additional categories are actually causing the the function to not appear in my test environments.That being the case, I cannot see how the code you are showing as an example is producing the results you are claiming.
Can you provide more details, such as: URL, theme, version, etc? If you need help with that please see my BNS Support plugin.
Forum: Fixing WordPress
In reply to: Not Show Child CategoryIf you do not want the (grand) child categories to show then add ‘&depth=1’ to the parameters of the code you gave above.
Change the depth parameter to 0 for all children, or a number greater than one for how many generations of child categories you wish to display.
Try this:
<?php wp_dropdown_categories('&show_option_none=Select One&orderby=name&order=ASC&hierarchical=1&child_of=28,45,52&depth=0'); ?>This will only display if there are sub-categories of the category IDs 28,45, and 52
Forum: Fixing WordPress
In reply to: Calling Widgets directly in index.phpYou’re welcome! Glad to help.