Forum Replies Created
-
AuthorPosts
-
MaheshParticipant
Hi @Lars,
I hope I understood your issue. Please clarify me if I still didn’t get you.
So you mean to display dynamic 404 page errors? Like No post found for blog error or something like that. I’m afraid it cannot be achieved as you desired. Because for the above mentioned issue we need to figure out whether it is a post/page/archive/user. We cannot get the what user/web-crawler is trying to find, which doesn’t exists in the site.I hope you understand what I mean.
Regards,
MaheshMaheshParticipantHi @EirikurVa,
Yes you can also use custom permalinks may be were some errors in custom permalinks which arose the issue. Try again with custom permalinks and let me know.
Regards,
MaheshMaheshParticipantHi @edfrancis001@,
Go to Dashboard=> Appearance=> Theme Options=> Social Links tab” you’ll see the page similar to img-1 below. Put your social links in the inputs and it will appear in the front page similar to img-2
img-1:http://www.awesomescreenshot.com/image/918707/60ddee772eddbc1089fd6a9f7c917658
img-2:http://www.awesomescreenshot.com/image/918723/aa5635ffe89464f8185e56eae28bfa58Regards,
MaheshMaheshParticipantHi @Brian,
You can download the theme from WordPress repository. Below is the link for it.
https://wordpress.org/themes/catch-responsive/I recommend you to use child theme for code changes because you’ll lose all you changes with theme updates.
Regards,
MaheshMaheshParticipantHi @andrewf90,
For above issue, please add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:
@media screen and (max-width: 480px) { #supplementary.three #second.widget-area { margin-left: 0; } }
Regards,
MaheshMaheshParticipantHi @Michael,
The above mentioned issue is already in process and will be available in the next update. We’ll be releasing the update in few days. After update, you’ll be able to put display video with some content in the excerpt. You have to manually insert the “Read more tag” in the content.
Please wait for the update.Regards,
MaheshMaheshParticipantHi @Lars,
I am a bit confused on what you’ve mentioned above. Do you mean to change below text for “http://energyfaculty.com/author/user” for your custom text.
“Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.”
If so, you have to create a child theme, please visit this LINK for more details on how to create child theme.
Copy following files from Catch Flames Pro theme to the child theme.
1. author.php
2. archive.phpBelow code is for
author.php
:
Replace this code
<?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'catch-flames' ); ?>
with this
<?php _e( 'Your Custom Text', 'catch-flames' ); ?>
Note: Replace “Your Custom Text” with your desired text.
Make the same change for archive.php too.
Regards,
MaheshMaheshParticipantHi @andrewf90,
The above code seems fine, and we checked your site and the code is working fine.
Let me know if we could help you further.Regards,
MaheshMaheshParticipantHi @Paul,
I replaced the
functions.php
of the child theme with yours and is working fine. I think you’ve made some other changes which is causing the problem. Please try by deactivating the plugins.Let me know if the issue persists.
Regards,
MaheshMaheshParticipantHi @andrewf90,
For the above changes, please use the following CSS:
#comments { padding-left: 0; }
Let me know if this helps.
Regards,
MaheshMaheshParticipantHi @witgi,
We would gladly help you to overcome your issue but Catch Kathmandu doesn’t have
style.php
file and we’re not sure what changes you have made in the files. Can you share the file with us so that we can look through it.Regards,
MaheshMaheshParticipantHi @Len,
We currently have released Clean Journal Pro version 1.0, this feature will be available in version 1.1 which will be releasing soon.
Regards,
MaheshMaheshParticipantHi @shawn,
For the above change, go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:
#main { padding: 10px; } .homepage-feature { width: 300px; } #primary { width: 650px; } @media screen and (min-width: 991px) and (max-width: 1024px) { #primary { width: 610px; } .homepage-feature { width: 280px; } } @media screen and (min-width: 961px) and (max-width: 990px) { #primary { width: 560px; } .homepage-feature { width: 255px; } } @media screen and (max-width: 960px) { #primary { width: 698px; } .homepage-feature { width: 324px; } } @media screen and (max-width: 767px) { #primary { width: 100%; } .homepage-feature { width: 45.5%; } } @media screen and (max-width: 640px) { .homepage-feature { width: 100%; } } @media screen and (max-width: 320px) { #main { padding: 10px 0 0; } }
Regards,
MaheshMaheshParticipantHi @leotrim77,
I checked your site, and you have some “——–” in your Custom CSS which is causing the issue. Remove these and it will fix the issue.
Regards,
MaheshMaheshParticipantHi @andrewf90,
About the full-width, as long as the site seems to work normally in both desktop and other responsive views, it is okay to use it.
And for bringing Header text and content closer to the edge of the pages, in your Custom CSS, change:
.wrapper { width: 98%; }
to
.wrapper { width: 100%; }
Let me know if fixes your issue.
Regards,
MaheshMaheshParticipantHi @shikarime,
The text mentioned above are “footer-meta”, you can find it in
catch-everest-pro/inc/template-tags.php
‘scatcheverest_footer_meta
function.
You can override this function in the child theme.Let me know if I can help you further.
Regards,
MaheshMaheshParticipantHi @Len,
For removing “This is Header Sidebar Widget Area”, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Header Top Options” and check “Check to disable header top” option.
And for making bit.ly link active in text sidebar, you can use the html’s anchor tag like below.
see <a href="http://bit.ly/207d30H" target="_blank">http://bit.ly/207d30H</a>
Regards,
Mahesh -
AuthorPosts