Gorakh Shrestha
Forum Replies Created
-
Thanks for you precious reply.
Forum: Fixing WordPress
In reply to: Custom Post Type Redirects To HomeHi dchaffin,
Your post type slug and (page or post) slug must be same. So instead of detecting post type redirecting to page.
Forum: Fixing WordPress
In reply to: Fatal errorHi judi45,
Did you try uploading class-wp-widget-factory.php this file ??
Forum: Fixing WordPress
In reply to: Media Library Empty and not allowing media uploadsHello comparerecipes,
did you try deactivating all plugins ??
Forum: Fixing WordPress
In reply to: Unable to see settings, pages, files etc in admin dashboardHi Peterwajdzik,
If you are the only one user in your site you must be administrator. Can you check your role.
https://prntscr.com/9vv7j5Forum: Fixing WordPress
In reply to: Photos in blog posts appear twiceHi akubrin,
I think you are adding image in content and feature image too. To avoid duplicate image in same post you just have to add one image either in feature image or in content area.
Something like this.
https://prntscr.com/9vcjogForum: Fixing WordPress
In reply to: Facebook share button errorjust after opening the <body tag.
Forum: Fixing WordPress
In reply to: Facebook share button error1. Replace your code with below one. App that your website using must be deleted from facebook by developer.
https://prntscr.com/9u1sp8<div id=”fb-root”></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = “//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.5”;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));</script>Forum: Fixing WordPress
In reply to: Remove link in logo on login screen@tracyselena paste that code in functions.php file
Forum: Fixing WordPress
In reply to: Remove link in logo on login screentry this code :
function remove_link() { echo '<style type="text/css"> div#login h1 a { pointer-events: none; cursor: default; } </style>'; } add_action('admin_head', 'remove_link');
Forum: Fixing WordPress
In reply to: Php question, totally lost.@dmaeuk
Did you paste that code after closing the ?> php and before opening another php <?php ?Like this :
<?php ?> Above code goes here. <?php ?>
Forum: Fixing WordPress
In reply to: Footer stuck in middle of pageHi taltal13
You forgot to close the clear div.Your code should be something like this : https://prntscr.com/9rhtwa
Forum: Fixing WordPress
In reply to: Php question, totally lost.Hi dmaeuk,
can you try something like this<div id="core_header_navigation" class="hidden-xs"> <?php $totalcoupons = wp_count_posts('listing_type')->publish; ?> We have <strong style="color: #e93030; font-size: 1.3em"><? echo $totalcoupons; ?></strong> blah blah blah <strong style="color: #e93030; font-size: 1.3em"> <?php $count_posts = wp_count_posts('coupon_type'); $totalcoupons = $count_posts->publish; $taxonomystore = wp_count_terms( 'store' ); echo $taxonomystore; ?> </strong> stores & <strong style="color: #e93030; font-size: 1.3em"> <?php $count_posts = wp_count_posts('product'); echo number_format("$count_posts->publish"); ?> </strong> <div class="<?php echo $CORE->CSS("container", true); ?>">
Forum: Fixing WordPress
In reply to: Images not uploadingSometime plugins create this kind of error in media upload. Try deactivating all plugins and try to upload image then active each plugin one by one.
I also face this problem and fixed same way.
Forum: Fixing WordPress
In reply to: Removing blue hyperlink from entire pageGlad to hear ??