Hello
Spent a couple of hours reading threads on how to do this, but failed miserably only managing to change the bottom half of the page.
Help please and asap if you could as am arranging a Charity Fundraiser and need to change the site background to correspond.
https://www.wharfedalerufc.co.uk
Thank you
Jonathan Driver
]]>I went to add this line of code:to my functions.php file:
function my_home_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'cat', '1' );
}
}
add_action( 'pre_get_posts', 'my_home_category' );
and I got the error:
Parse error: syntax error, unexpected ‘add_action’ (T_STRING), expecting function (T_FUNCTION) in /home1/ikelove/public_html/wp-content/themes/inove/functions.php on line 10
I then removed the function and wound up going to a clean functions.php file I had saved and pasting the code from there and I’m STILL getting the same error. I even went to a link to the functions.php file for inove 3.0.5 here: https://themes.svn.www.ads-software.com/inove/3.0.5/functions.php to get this code
[ Moderator note: Code redacted, please use pastebin for posting large amounts of code. ]
I still get the same damn error. What in the world is going on?
]]>This theme is compatible with WordPress 4.x?
]]>Theme is not working properly on WordPress 3.9 anymore.
Since the last update the following error appears:
Warning: Missing argument 2 for wpdb::prepare(), called in /home/httpd/vhosts/tinywebgallery.com/httpdocs/blog/wp-content/themes/inove/footer.php on line 22 and defined in /home/httpd/vhosts/tinywebgallery.com/httpdocs/blog/wp-includes/wp-db.php on line 1147
Best, Michael
]]>I am trying to translate theme from English to Polish.
However I have problem.
When I am translation:
% comments
to
% komentarze
I receive the announcement:
B??d: 'msgstr' is not a valid PHP format string, unlike 'msgid'. Reason: In the directive number 1, the character 'k' is not a valid conversion specifier.
Hi MG12,
Please help. I would like to update the theme manually because I have already modified some styles and structures in version 1.2.3.
Is there a way to update it manually by not touching the things i have done.
Thank you.
]]>Inove theme 1.4.6 when upgraded to wordpress 3.4.2 noticed that one of my pages that had comments would not display. Once you type in the password to get to the page where the comments should be there is another gray box with a sentence that says type in password here instead of actually pulling the comments from the databse to see them. The Inove theme dashboard shows the comments but will not display to that password protected page. Please help!
]]>Hi,
I’m using Inove, and I was able to add my custom header simply by replacing the file “header.jpg”. However, the text of the site title and the tagline are still showing. How can I get rid of these?
Thanks!
]]>I have been using the iNove theme for years but just tried using the drop down option in the page menus. It is not working. In IE I am getting the following errors
Type mismatch in menu.js
Line 3 | Character 3
This menu.js is in the theme directory. I having troubles finding anyone with a similar error.
I am also getting an error… object doesn’t support this property or method.
These errors come up in IE. In firefox I don’t see errors… the menu drop down just doesn’t work at all.
Any help would be appreciated. Thanks.
Link to site: https://bit.ly/GPEntv
]]>This is a good theme been using it for years, I’ve seen some asking about menus having wrong offset when using WordPress admin bar so here’s the fix. The cumulative offset function was reading wrong offset due to HTML element having margin-top due to WP admin bar. Find following inside js/menu.js:
cumulativeOffset = function(element) {
var valueT = 0, valueL = 0;
do {
valueT += element.offsetTop || 0;
valueL += element.offsetLeft || 0;
element = element.offsetParent;
} while (element);
return [valueL, valueT];
}
and replace with following:
cumulativeOffset = function(element) {
if (element.getBoundingClientRect) {
return getOffsetRect(element)
} else { // old browser
return getOffsetSum(element)
}
}
getOffsetRect = function(element) {
var box = element.getBoundingClientRect()
var body = document.body
var docElem = document.documentElement
var scrollTop = window.pageYOffset || docElem.scrollTop || body.scrollTop
var scrollLeft = window.pageXOffset || docElem.scrollLeft || body.scrollLeft
var clientTop = docElem.clientTop || body.clientTop || 0
var clientLeft = docElem.clientLeft || body.clientLeft || 0
var top = box.top + scrollTop - clientTop
var left = box.left + scrollLeft - clientLeft
return [Math.round(left), Math.round(top)];
}
getOffsetSum = function(element) {
var top=0, left=0
while(element) {
top = top + parseInt(elem.offsetTop)
left = left + parseInt(elem.offsetLeft)
element = element.offsetParent
}
return [left, top];
}
I’ve tested on Chromium and Firefox and it works great. I’m running Linux so have no IE if someone could test with IE it would be great, thanks!
There is currentOffset function, maybe it also needs to be modified because it is also used in some cases but for me it isn’t (yet) necessary.
]]>iNove theme does not natively support menus. Does anyone know how to enable custom navigation menu features on iNove or blocks 2 theme.
]]>Hello,
how could I add a small counter in a particular places of iNove theme?
How can I add it at the center, at the left side (at the center of WordPress logo), at the right side (near ‘Top’ button)? What I want to do: image
Thank you.
]]>I’m using the iNove theme on a WordPress.com site and after I activated Custom CSS with the theme the sub menus no longer appear in IE8.
This happens even if I don’t add any custom CSS. So I’m inclined to believe this is a bug with the theme.
I have since customized the CSS with my own styles:
https://harveyjustmann.wordpress.com/
There are sub pages below the “Service” and “Library” pages, but no menus in IE8.
Another person posted about this a year ago with no resolution. All that I have edited is the custom CSS, through the WordPess.com Admin. The JavaScript has not been touched (it’s not possible through WP hosted sites).
Is there any chance this will be fixed?
]]>Having upgraded from wordpress 3.1 to 3.2 the javascript navigation bar in the header no longer functions in IE. the menus don’t drop down when you rollover them.
It must be to do with changes in WP, as I’ve since downgraded back to 3.1 and it operates fine again.
I’d love for this to be fixed (or learn of a fix I can apply myself) so I can run the newer WP.
]]>