Ramesh (thecodeisclear)
Forum Replies Created
-
Hi,
Did you recently activate or update any plugin or the theme itself? You could de-activate all plugins and see if the issue is resolved. If it is resolved, activate plugins one-by-one (and check the site each time). You should be able to find the plugin that is causing the problem.
Thanks,
RameshForum: Fixing WordPress
In reply to: Category Archive only shows full post…I would suggest you create a child theme and copy the content.php file into it. You can make the following changes
Search for
<?php if ( is_search() ) : ?>and change it to<?php if ( is_search() || is_category() ) : ?>Explanation: When content is being sent back, content.php checks if the page being displayed is a search results page. If yes, it displays on the excerpt. The above modification will send back the excerpt if the page being displayed is either a category archive or search results page.
More: How to create a child theme at WordPress Codex
Forum: Fixing WordPress
In reply to: need to replicate this pageHi,
Sorry, I don’t understand Italian, so I am not sure exactly what the content symbolizes. Is it that the drop down is a list of categories and the list of names is the posts under the category (I am referring to each person as having a corresponding post)
Or if you are just looking for a staff directory, something like this could help – https://wordpress.org/plugins/bepro-listings-business-directory/
(more similar plugins – https://wordpress.org/plugins/tags/staff-directory)
Forum: Fixing WordPress
In reply to: Google search shows author page instead of home pageWhen I search for your site, I don’t see your author page anywhere in the results. The first page I see when searching for the terms
circuitandbasicsis the category page http://www.circuitbasics.com/circuits/
(higher keyword concentration I guess)
When searching the term as one workcircuitbasics, the top result is http://www.circuitbasics.com/setup-lcd-touchscreen-raspberry-pi/ (you have commented on this page so the term circuitbasics appears twice)
Google is probably serving you different content based on old search patterns. Your home page description could include circuitbasics and probably you could add ameta keywordstag too to make the home page rise above. (can’t say I am a SEO guru, but just my 2 cents)Forum: Fixing WordPress
In reply to: My site keeps getting suspended by directnicI had a similar problem and since I didn’t actually need to send any mail (wasn’t running any newsletter service/notifications), I disabled sendmail on my server from the cPanel. You could try that first and maybe if there are logs see when and what is calling the sendmail function.
Forum: Fixing WordPress
In reply to: How to open links in new tab but…Your code can be rewritten with the target attribute
<a href="http://google.com" target="_blank"><img src="https://www.google.co.in/logos/doodles/2015/126th-anniversary-of-the-public-opening-of-the-eiffel-tower-4812727050567680-hp.jpg" /></a>This should work keeping your visitors on the same page while the ad opens in a new tab/window.
Forum: Fixing WordPress
In reply to: Error on Plugin Installation pageCreate a file called phpinfo.php and enter the following code
<?php // Show all information, defaults to INFO_ALL phpinfo(); ?>Upload the file to your webhost and point to the file (for e.g. – http://bedesiadoptadesi.com/phpinfo.php)
Look for the two functions mentioned and the corresponding values (on/off). Alternately, you can ask HostGator 🙂
Forum: Fixing WordPress
In reply to: Error on Plugin Installation pageHi,
From similar issues I found in the wordpress support forums, you could try these
(1) Through your cPanel, check phpinfo() to see if these functions are available – allow_url_fopen and curl_init . You can check with phpinfo().
One of them is necessary for update/install. (source)(2) Check with Hostgator if the server where your site is hosted has access to the following url – api.wordpress.org. If not, have them add the IP in the hosts file. (source)
Considering that you are able to browse the internet, I don’t think it is a problem with your desktop.
Forum: Fixing WordPress
In reply to: Error on Plugin Installation pageCan you post a screenshot with the error please? Does the error also say – (WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)
Forum: Fixing WordPress
In reply to: Error on Plugin Installation pageHi,
Are you running the server locally? I have faced a similar problem when I run a localhost WP site. I think the local XAMPP server is unable to access the WordPress.org website (even though my computer is connected to the internet). I ignore it and add plugins/themes via upload.
Regards,
RameshForum: Fixing WordPress
In reply to: How to add "login and sign ups" system for my blog?Hi,
Do you currently have a work in progress site or some ideas in mind? Just by the initial details, I think you are looking for a form where users can enter data. The admin will review the content and convert it into a new post. Is my understanding right?
Hi,
The post that is in error is actually not a regular post, but is of type ‘aside’. The theme delivers content separately based on the post type. Edit the post, and to the right side of the screen, you will be able to change the post type from aside to standard
Hope this helps.
– Ramesh
Hi,
Looks like the post in error is actually of type ‘aside’ and the theme delivers different content based on what type the post is.
Edit this post (http://rechargetricks.in/paytm-promo-codes-march-2015.html) and usually to the right of the page you will be able to select the post type. Change it from aside to standard and it should work fine.
Forum: Plugins
In reply to: prepare() function issuesWelcome @orangeworx, but you had already done all the research. 🙂
Forum: Fixing WordPress
In reply to: Htaccess issue@rajan V, I wouldn’t be quick to point it as a drawback of WP. Like any system, security depends on the settings one chooses.
I would agree with wslade, making some of the changes suggested greatly helps. I, for one, made a lot of .htaccess changes after recovering my site.