wpbees
Forum Replies Created
-
Forum: Localhost Installs
In reply to: website trasfered on synology nasHello,
have you tried to deactivate and activate again the theme you’re using?.
if yes try to update your phpAdminForum: Fixing WordPress
In reply to: Remove words “Search for:” from my themeHello,
If the search field is implemented as a widget, this can be done via the administration interface. Just navigate to Appearance > Widgets and drag the search widget from the widget area to the “Available Widgets” pane.
If the search field is hard-coded into the theme, it might be easier to edit the CSS rather than the HTML and PHP. Here’s how:
Use Firebug or a similar tool to locate the DIV element containing the search code.
In the theme’s CSS file (probably style.css), add display: none to that DIV. That’s it!This is a minimally invasive approach. If you ever want to re-enable the search bar, just remove the display: none statement from your CSS.
i hope this helps.
Forum: Fixing WordPress
In reply to: non-root multisite access problemHello,
Try changing this two lines in .htaccess:
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]With this:
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]I hope this helps.
Forum: Fixing WordPress
In reply to: Allow users to reate their own blogHello,
Try using this plugin Peter’s Collaboration Email This method is useful only if you are using the account-based system for accepting guest posts. And, you need all guest bloggers to be registered as a contributor in your blog. Once you have installed the plugin in your blog, instead of the publish button, each contributor can see the ‘Submit for Review’.
i hope this helps.
Forum: Fixing WordPress
In reply to: How to create a new post with pre-filled content?Hello,
If I understand properly. Look on these filter hook- wp_insert_post_data. In functions.php:
if (isAdmin()){
add_filter(‘wp_insert_post_data’,’custom_insert_post’, ’99’, 2);
function custom_insert_post($data, $postarr){ <–
$data[‘post_title’] = ‘default_post_title’;
$data[‘post_status’] = ‘future’;
//…. etc}
}
Also look on that hook – save_post.
add_action(‘save_post’, ‘custom_insert_meta_values’);
function custom_insert_meta_values($post_ID){
$default_meta_key = ‘….’;
$default_meta_value = ‘….’;add_post_meta($post_ID, $default_meta_key, $default_meta_value);
i hope this helps.
Forum: Fixing WordPress
In reply to: Requests_Cookie_Jar not foundHello,
I Think you need to do some changes in your (class_requests.php)
have you try checking your (Jar.php) on your phpAdmin?Forum: Fixing WordPress
In reply to: Warning being thrown from kses.phpHello,
think the warning is from the plugin your using. And (wp_kses_attr_check) act like a security it only allows HTML elements.
i hope this helps.
hello
Have you tried checking the links on your wordpress?
i think that it is still on Home page URL.Forum: Fixing WordPress
In reply to: Center Logo for Mobile: OceanWP ThemeHello,
Upon checking your website in my phone. I can see that there is no problem, the
logo is fine.Forum: Fixing WordPress
In reply to: Footer widget not workingHello,
Can you provide the URL of your website?
so that I can analyze it and find a better solution for your problem.Thank you.
Forum: Fixing WordPress
In reply to: WordPress Update Failed due to inconsistent file permissions.:Hi,
Did you do the update manually or it is in auto-update?
if it’s in an auto update I recommend that do the update manually
to avoid errors in updating your WordPress.Forum: Fixing WordPress
In reply to: Delete Cover Photo option on User ProfilesHi,
Have you tried looking at the member directories? you can hide your cover photo in there.
Forum: Fixing WordPress
In reply to: Cant login (cpanel)Hello,
Have you tried to login to your cPanel account using a different browser? Or I would suggest clearing your browser’s cache/cookies and attempt to access your hosting account again.
i hope this helps.
Forum: Fixing WordPress
In reply to: Detect Mobile BrowserHello,
The hamburger menu is always there it is just hidden at certain screen sizes.
you can get the hamburger menu effect on desktop browsers as well, just shrink the width of your browser window down and eventually you will see the hamburger.i hope this helps,
Hello,
thank you for providing your theme.
can you send me a screen shot of your web site in mobile view so that i can see
what actually the problem is and analyze it for a better solution.