Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
Usually this is my methodology for moving a site between hosts:
- Zip all files in current host, copy the zip file to new host, extract
- Use WP Migrate DB plugin to export the database from the current host, taking care to properly define the URL and directory of the new host
- Use phpMyAdmin on new host to import the exported database
- Login to the site on new host, and resave the permalink settings
- Cursory check to see if everything is working properly
The above is by far the quickest way to move existing sites between hosts, but it can be quite difficult if you’re not familiar with accessing your server’s control panel and using phpMyAdmin.
Admin
Admin
Here’s the code for the posts navigation that you referred to:
<div class="post-nav clearfix">
<p class="previous"><a href="URL">Older posts «</a></p>
<p class="next-post"><a href="URL">» Newer posts</a></p>
</div>There is no inline (or embedded) styles there. Only classes which are then styled from the
style.cssfile.Admin
In reply to: How to put a background-image into right sidebar with 'categories'
July 20, 2013 at 1:54 pm #39386Don’t edit the theme’s files, even the style.css file. Instead, copy and paste the code Prasanna gave you either to the theme’s Custom CSS option or to your own child theme’s style.css file.
Admin
Marking thread as resolved. You can do this yourself as well.
Admin
In reply to: broken visual selection menu at graphene options backend
July 20, 2013 at 4:24 am #39302Quote:It turns out the incompatibility is with the Shortcodes Ultimate plugin.If I disable it, the Graphene Options screen displays perfectly.
Thanks for this information. I’ve looked at the plugin’s code and it appears that the plugin overrides one of the JS libraries that the theme is using, thus causing the issue. We’ll add some workaround for this in the next update, and I’ve also notified the plugin’s developers to only add their scripts where it is needed instead of everywhere.
Admin
It is possible, but will require some coding.
1. Create a
functions.phpfile in thewp-content/uploads/gmneo-custom/folder.2. Add this code into that
functions.phpfile you’ve just created:<?php
function gmneo_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Navigate to page' => 'Your replacement string here',
);
if ( ! empty( $strings[$original] ) ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'gmneo_filter_gettext', 10, 3 );Admin
Quote:The defaults work, but none of my saved presets. Also, the Primary and Secondary menu don’t change at all.Yep, we’ve identified the cause of the two issues above and made the fixes. They’ll be available in the next update.
Admin
OK, marking the thread as resolved then. You can do this yourself as well.
Admin
In reply to: broken visual selection menu at graphene options backend
July 19, 2013 at 3:45 pm #39300In order to fix this issue, it’s important for us to be able to reproduce it, which hasn’t been the case so far.
@Adrianw, can you disable all plugins and see if the issue persists?
