wpbees
Forum Replies Created
-
Hello,
What theme are you currently using for your website?
Forum: Fixing WordPress
In reply to: How to connect a plugin page with user list linkHello,
When building a plugin that has its own settings page, it’s often handy to create a link to the settings page straight from the Plugins list – this saves users the time it takes to find where exactly your plugin appears in the admin menu. Here is a simple code snippet that creates the settings link for you – all you need to do is tell it where to go:
<?php function plugin_add_settings_link( $links ) { $settings_link = '<a href="options-general.php?page=plugin_name">' . __( 'Settings' ) . '</a>'; array_push( $links, $settings_link ); return $links; } $plugin = plugin_basename( __FILE__ ); add_filter( "plugin_action_links_$plugin", 'plugin_add_settings_link' ); ?>Simply replace the href attribute with the link to the plugin settings page and rename the function to something slightly more unique (preferably all wrapped in an if(!function_exists()) conditional).
I hope this helps
Forum: Fixing WordPress
In reply to: Missing my “add new” plugin buttonHello,
The Add New button should display under the menu options as well as on the main plugin page. If you are not seeing that, you may have an issue with other plugins or the theme affecting the core of WP.
To check the theme, simply set your theme to the default one and check to see if the Add New button reappears. If so, then you will need to either change themes altogether or switch to the default them when you want to add a new plugin. If the button still does not appear, you will want to check your plugins.
To test this, turn off all plugins and see if the button appears. If so, then turn them on one by one to determine which one is affecting the WP. If the button still does not appear after turning off all the plugins, you may want to reinstall WordPress. If this is a brand new installation, simply delete the old one and then reinstall. If you have a lot of content, you will simply want to reinstall the core files on your account so you do not lose any data.
i hope this helps
Forum: Fixing WordPress
In reply to: PDF file can’t openHello,
What Browser are you using when you try to download the PDF file ?
when a browser like Chrome on Android gets a PDF link and offers you the ability to open the file in Acrobat it’s only the URL that gets sent across to Acrobat, if the site you are loading the PDF from required a login to access the material when Acrobat requests the file, it may well be getting back a HTML login page instead of the PDF, which it can’t render.This is why if you download the file first and then open it in Acrobat it all works fine.
I hope this helps.
- This reply was modified 7 years, 10 months ago by wpbees.
Hello,
Maybe this will help.
category-slug.php → category-id.php → category.php → archive.php → index.phpFirst WordPress will look for a template specific for that particular category using the category slug, for example, category-design.php template will be used to display ‘Design’ category. If it does not find a category-slug template, then WordPress will look for a template with category id, for example category-6.php. After that it will look for the generic category template which is usually category.php. If there is no generic category template present, then WordPress will look for generic archive template, i.e. archive.php. Lastly it will use index.php template to display the category.
<?php /** * A Simple Category Template */ get_header(); ?> <section id="primary" class="site-content"> <div id="content" role="main"> <?php // Check if there are any posts to display if ( have_posts() ) : ?> <header class="archive-header"> <h1 class="archive-title">Category: <?php single_cat_title( '', false ); ?></h1> <?php // Display optional category description if ( category_description() ) : ?> <div class="archive-meta"><?php echo category_description(); ?></div> <?php endif; ?> </header> <?php // The Loop while ( have_posts() ) : the_post(); ?> <h2><a>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small> <div class="entry"> <?php the_content(); ?> <p class="postmetadata"><?php comments_popup_link( 'No comments yet', '1 comment', '% comments', 'comments-link', 'Comments closed'); ?></p> </div> <?php endwhile; else: ?> <p>Sorry, no posts matched your criteria.</p> <?php endif; ?> </div> </section> <?php get_sidebar(); ?> <?php get_footer(); ?>I hope it can help..
- This reply was modified 7 years, 10 months ago by bcworkz. Reason: code fixed
Forum: Fixing WordPress
In reply to: PHP Fatal error (regarding ABSPATH)Hello,
I think it should be the ../wp-option.php instead of ../wp-settings.php
I hope this helps.
Forum: Fixing WordPress
In reply to: Can’t get into my blog or dashboardHello,
Maintenance mode page is technically not an error. It is a notification page. During the update process.but you can prevent it by updating your WordPress into the latest version once it has a new version update.
I hope this helps.
Hello,
As I visit both of the URL that you provided it seems that both shows invalid certificate even without (/civtbg) you can try to update your certificate in your hosting site. If you want to check your certificate validity information you can click the icon lock at the right side of the address bar.
Yes you can try to add another certificate.
Hi,
i can see that your certificate is not valid anymore. try to contact your domain host to validate your certificate.
i hope this helps
- This reply was modified 7 years, 11 months ago by wpbees.
Forum: Fixing WordPress
In reply to: WordPress Menu Not Save Any SettingHello @sleepyelf
I think your Main Menu plugin has reach it’s limit so that even you
have successfully added a new item once it reach you can’t possibly save.i hope this helps.
Forum: Fixing WordPress
In reply to: XMLRPC is slow?Good day,
Mai i know what xmlrpc are you using please?
Looking forward and best regards,
Forum: Fixing WordPress
In reply to: Can’t disable Captcha on wp-loginHi there,
Potentially the captcha is originating from your functions.php file. Search for it and comment it out.
Best regards,
Forum: Fixing WordPress
In reply to: Speed up your websiteHi There,
Your site seems to load really slow, not sure if its the hosting or how the site was built. Try to contact your local hosting regarding this issue.
Thanks,
Forum: Fixing WordPress
In reply to: Update stock manager inventory with uploading .XML filewatch this video it might give you an idea on how to upload .xml files to your wordpress site,it contains some plugins for you to used. If you already have a plugin try to install this one as well. I hope it helps
Forum: Fixing WordPress
In reply to: Update stock manager inventory with uploading .XML fileHello @aquaspade, Are you using any plugins to your wordpress woocommers?