alithewpdev
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Can’t change upload limitHi @junior466 If this is not working then you can try to contact your hosting support they will change from the server as it seems it will be change from server side.
Forum: Developing with WordPress
In reply to: how to create twitter card without plugin ?Did you change the Twitter Handle value with your twitter handle?
Forum: Everything else WordPress
In reply to: Assigning Authors to existing postsHi @lucica3 You can use plugin to achieve this from the following link and select the plugin as per your need.
Forum: Fixing WordPress
In reply to: My blog posts are showing in my primary nav menuHi @festus33 As i can understand you want to display 3 items in the main menu. So for that you can create a menu in the wordpress with the selected pages. After that you can use the wordpress menu Elementor widget and select the created menu in the step.
Please let me know if you have any questions.
Forum: Developing with WordPress
In reply to: how to create twitter card without plugin ?Hi @tanmaybaijal Please paste this following code in your header.php file just before to the </head> tag.
<?php if(is_single() || is_page()) { $twitter_url = get_permalink(); $twitter_title = get_the_title(); $twitter_desc = get_the_excerpt(); $twitter_thumbs = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), full ); $twitter_thumb = $twitter_thumbs[0]; if(!$twitter_thumb) { $twitter_thumb = 'http://www.gravatar.com/avatar/8eb9ee80d39f13cbbad56da88ef3a6ee?rating=PG&size=75'; } $twitter_name = str_replace('@', '', get_the_author_meta('twitter')); ?> <meta name="twitter:card" value="summary" /> <meta name="twitter:url" value="<?php echo $twitter_url; ?>" /> <meta name="twitter:title" value="<?php echo $twitter_title; ?>" /> <meta name="twitter:description" value="<?php echo $twitter_desc; ?>" /> <meta name="twitter:image" value="<?php echo $twitter_thumb; ?>" /> <meta name="twitter:site" value="TWITTER HANDLE" /> <? if($twitter_name) { ?> <meta name="twitter:creator" value="@<?php echo $twitter_name; ?>" /> <? } } ?>Also you can use wp_head hook to insert this code into the head tag using functions.php file
Forum: Everything else WordPress
In reply to: Featured image size does not go above 270×100Hi @pfzxxx Can you please share the page where you are facing this issue?
Forum: Everything else WordPress
In reply to: Assign different template to category pageHi @limeyard Let say you have a test category then the template file name would be category-test.php. This file would be in the theme folder.
Forum: Everything else WordPress
In reply to: Same Title and H1 : is it bad?Hi @lucaslopez For the SEO you can have only H1 tag in the page/post. Almost every theme follow this and made post/page title in the H1 tag. So when you are uploading content you can use H2, H3, etc tags as per your content.
Forum: Developing with WordPress
In reply to: How to make posts with future date visible on websiteIf you want display published post then just change post_status to publish.
Rest this code only will display your future dates posts.
Forum: Networking WordPress
In reply to: How to customize headers via php for multisite installation@huzaifazoom I’m glad i could help you.
Hi @bbcud Are you using any page builder or just gutenberg?
Forum: Fixing WordPress
In reply to: Can’t find source to remove contact form on bottom of pageHi @empowerhealthmarketing You can try this one https://avada.com/documentation/how-to-set-up-a-legacy-contact-page/
Also, you can hide the form using CSS.
Also You are using Avada theme. So you can contact them via theme support..
Forum: Networking WordPress
In reply to: How to customize headers via php for multisite installationHi @huzaifazoom First of all before make any changes in your theme, create a child theme and actiate. Then whatever you want edit just create that file in your child theme here your header.php.
Forum: Fixing WordPress
In reply to: Login WordPress doesn’t workHi @sterndata, I’m sorry about that, as I was unaware of that, and what you said makes sense. I’ll keep these things in my mind next time.
Thanks for pointing out this to me.
Forum: Accessibility
In reply to: Speed OptimizationHi @prokingfishing, I have checked your website performance on Google page speed, and it’s quite good, I mean 99 on desktop and 77 on mobile https://pagespeed.web.dev/analysis/https-kingfishingpro-com/rjpukd1ps9?form_factor=mobile.
To optimize speed even more, you can https://kingfishingpro.com/cdn-cgi/challenge-platform/h/g/scripts/jsd/70d5f7ce/invisible.js remove this JS if you are not using or try to minify using WP rocket plugin. It’s the only JS thing I can see to improve the speed.
Suggestion: You can also use the Smush plugin to compress images if you are not using it.
- This reply was modified 3 years, 1 month ago by alithewpdev.
Forum: Fixing WordPress
In reply to: How to hide page name@ketanco I’m not sure but you can try this plugin https://wordpress.org/plugins/shk-hide-title/