Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Drop Down menu not displayedHi,
I don’t know what is the issue, it seems the official website for Gomilitary WordPress theme is now using Smooth Navigational Menu with ddsmoothmenu.js for the drop down menu.
When I load your home page, I can not see the file ddsmoothmenu.js loaded.
There was certainly an update for this theme some days earlier.
If this could help…Forum: Fixing WordPress
In reply to: 'page not found' screen coming just above the contentForum: Fixing WordPress
In reply to: Featured image of child pagesHi,
You could put :
<?php echo get_the_post_thumbnail($pageChild->ID, 'thumbnail'); ?>
in the link, like this :
<a href="<?php echo get_permalink($pageChild->ID); ?>" rel="bookmark" title="<?php echo $pageChild->post_title; ?>"><?php echo get_the_post_thumbnail($pageChild->ID, 'thumbnail'); ?></a>
Isn’t it ? Did I understand what you want to do ?Forum: Fixing WordPress
In reply to: Bullet points not showing in widget areaYou have do not changed anything… I’m still seeing :
#home-middle ul li, #home-bottom ul li { list-style-type: none; margin: 0 0 5px 0; padding: 0px; }on line 2768
See here what I did for this to works :
http://www.monsterup.com/upload/1358783647142.pngAlso, remove
style="list-style-type:disc;"from the code below :<ul style="list-style-type:disc;"> <li>2-3 hours </li> <li>Morning/Afternoon/Evening</li> ...Then edit the file style.css (http://www.child-matters.co.uk/wp-content/themes/enterprise/style.css), go to line 2768 and paste this :
#home-middle ul li, #home-bottom ul li { list-style-type: disc; margin: 0 0 5px 0; padding: 0px; }Forum: Fixing WordPress
In reply to: Bullet points not showing in widget areaOK…
Sorry.
Revert the changes you made in the template.
Just put<ul>Now, edit the file style.css and go to :
#home-middle ul li, #home-bottom ul li { list-style-type: none; margin: 0 0 5px 0; padding: 0px; }Then, replace :
list-style-type: none;
by
list-style-type: disc;Forum: Fixing WordPress
In reply to: Link titleI don’t know for this portion of code because I don’t know what was used behind ‘eregi‘
But in a near future, why don’t you do this kind of thing :
<a href="<?php echo get_permalink(); ?>" title="permalink to <?php the_title(); ?>"><?php the_title(); ?><img src="the_post_thumbnail('thumbnail');"></a>Sure, it depends who your WordPress thumbnails template has been implemented in the theme by the theme’s developper.
Forum: Fixing WordPress
In reply to: Link titleThere is something wrong here too :
<a>"> <div style="width:190px;height:190px;background:url('<?php $img = get_the_post_thumbnail(); eregi("src=\"([^\"]+)\"", $img, $arr); echo $arr[1]; ?>');"> </div> <span class="image overlay"></span> <span class="description"></span> </a>And you shouldn’t use CSS style to call/display post thumbnail as link !
Forum: Fixing WordPress
In reply to: Single post page for custom post typeForum: Fixing WordPress
In reply to: Link titleYou still have 2 times the same word (1 link is working and 1 is not a link) ?
Forum: Fixing WordPress
In reply to: Any way of downgrading from 3.5 version?That’s what I thought.
It’s good to know that, even for me.Forum: Fixing WordPress
In reply to: Link titleHi,
There is something wrong here with the quote, and there is not href for destination :
<a>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>Function Reference/the title attribute
Displays or returns the title of the current post. It somewhat duplicates the functionality of the_title(), but provides a ‘clean’ version of the title for use in HTML attributes by stripping HTML tags and converting certain characters (including quotes) to their character entity equivalent; it also uses query-string style parameters. This tag must be within The Loop.
http://codex.wordpress.org/Function_Reference/the_title_attributeTry this :
<a href="<?php echo get_permalink(); ?>" title="permalink to <?php the_title(); ?>"><?php the_title(); ?></a>Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected $end in /home/I tested this theme in my WordPress, I do not get the error.
I suggest you to deactivate all your plugins to test if the error message disappear.
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected $end in /home/Hi,
What you pasted here is not the full content of option.php file. But I downloaded this theme and checked the file…
It’s clear that the <?php directive is not closed at the end (or so I don’t know where is the error)
This is what the error message says. It looks for the end of <?php.The message says that the error is at line 1 because <?php is seen, but not ?>
Forum: Fixing WordPress
In reply to: Any way of downgrading from 3.5 version?Hi,
Yes (I think, but I’m not sure) ! It’s at you own risk !
I tell that because
1) It’s not sure that your database will adapt itself to cancel the changes made by WP 3.5
2) you should find out what is the issue rather than downgrade WordPress. Simply because perhaps you will be faced with other security problems later.If you want to downgrade anyway :
– Make a backup of your database and your web server (files)
– Go here WordPress Release Archive and download the previous version of WordPress (3.4.2)
– Upload the WordPress 3.4.2 decompressed files in the relevant folders (in www\, in wp-admin ; in wp-content ; in wp-includes)
Forum: Fixing WordPress
In reply to: Bullet points not showing in widget areaHi,
Yes, the ‘#home-middle ul, #home-bottom ul‘ CSS rule sets the bullet points type to ‘none’.
Instead of using this as static HTML directive :
<ul type="disc">
just use this as static HTML/CSS rule :
<ul style="list-style-type:disc;>