asylum119
Forum Replies Created
-
A quick search found How to remove footer credits and Custom CSS for removing footer credits, also the themes support threads will most likely have more information of how others have achieved similar things.
Forum: Themes and Templates
In reply to: [Customizr] Unique Title on each pageI would suggest starting with the following in_category(), is_post_type_archive() and is_singular(). and don’t forget to set a default for any content that you may potentially miss or not wish to worry about changing for now.
If you need a more in depth example then you could look at something like a bootstrap breadcrumb to get a head start on things.
Anyways, good luck
Forum: Themes and Templates
In reply to: [Customizr] Unique Title on each pageAre you after the title “Joan Scott -” and to be able to customize the description part of the title like “Exhibitions” so content is more relevant to the user depending what part of your site they are viewing ?
Whatever the title is that you are trying to show differently for certain content it could be done with a function and conditionals before needing to remove it completely then adding a unique header.
Forum: Themes and Templates
In reply to: [Sela] How do i change the footer widget text color of my site?Not sure how you edited the title so it somewhat limits a more specific answer however you could do this by adding some CSS
.textwidget p { color: yellow !important; }
Forum: Themes and Templates
In reply to: [Enigma] Carousel Navigation DotsI am unfamiliar with this theme however if you have access to either edit CSS in the theme settings or install a CSS editing plugin you could always do it that way by adding something like…
/* remove carousel dots */ .carousel-indicators li { display: none; }
If the file that you are editing within the main theme receives or is included in a future theme update then yes your custom edit will be overwritten.
Forum: Plugins
In reply to: [SlimStat Analytics] Unknown flag missingCamu, for some reason my image was missing but I have copied it over from your link. feel free to mark as resolved
Forum: Themes and Templates
In reply to: [ColorMag] Custom CSS for removing footer creditsfor CSS removal add
.copyright { display: none; }
To make an edit you could put something like the following into your child themes functions.php file
// Replace the theme colormag copyright function colormag_footer_copyright() { ?> <div class="copyright"> © <?php echo get_bloginfo( 'name' ) . ' ' . get_the_date( 'Y' ); ?> | some extra stuff here </div><!-- /.copyright --> <?php }
Forum: Fixing WordPress
In reply to: StatisticsSlim stats is good but the excessive updates and notifications are a bit much
Forum: Themes and Templates
In reply to: A better way of making a custom template for the front pageI fail to see how not being listed in the attributes drop down somehow renders this newly built template non usable but anyways good luck
Forum: Plugins
In reply to: [SlimStat Analytics] external page tracker stoppedYeah it does work and was an issue on my side loading the wp-slimstat.js from a third party.
Forum: Themes and Templates
In reply to: A better way of making a custom template for the front pageAs long as you do not put “Template Name: the template name” in the comments section of your custom page template then it shouldn’t show in the Page Attributes drop down.
You will however still be able to set it as the static home page so my advice would be to follow the documentation to create a custom page template and if adding comments replace the following.
/** * Template Name: the template name */
with this
/** * Template: the template name */
Forum: Fixing WordPress
In reply to: Private Post BUT Public excerpt on HomepageMaybe just wrap a custom post template with the is_user_logged_in() conditional, this way the category will still show the images and excerpts and when a post is clicked the user will get a custom message or if they are logged in go straight to the private post as expected.
<?php if ( is_user_logged_in() ) { // Your private post template } else { // If not logged in then put something here to show } ?>
https://codex.www.ads-software.com/Function_Reference/is_user_logged_in
https://codex.www.ads-software.com/Post_Type_Templates#Custom_Post_Type_TemplatesForum: Themes and Templates
In reply to: [evolve] Change h1, h2, h3 Font and Font Sizewp-admin > appearance > theme options > typography gives some options to change your themes title options but if that fails you could always play around with some CSS
h1, h1 a, h2, h2 a, h3, h3 a { font-size: 1.3em !important; font-family: 'Roboto',arial,sans-serif !important; }
or even extend the CSS to make titles more responsive
@media (max-width: 1200px) { h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a { font-size: 1.3em !important; } } @media (max-width: 1000px) { h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a { font-size: 1.2em !important; } } @media (max-width: 700px) { h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a { font-size: 1.1em !important; } } @media (max-width: 600px) { h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a { font-size: 1em !important; } } @media (max-width: 550px) { h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a { font-size: 1.em !important; } } @media (max-width: 500px) { h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a { font-size: .95em !important; } } @media (max-width: 450px) { h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a { font-size: .9em !important; font-weight: 700 !important;
Forum: Themes and Templates
In reply to: [evolve] How to update latest evelve them with old customisationFor me when it come time to update I do it on a localhost install that uses a child theme with all of my custom template edits, once the main theme is updated I then use file comparison software (Kaleidoscope for mac) and start merging the newer theme code over to my older custom templates ensuring I retain my custom code.
If you are having trouble merging the code then I suggest taking the extra time to comment your edits so that with any updates in the future you can easily spot where they start, what they do and where they end.
Once happy that everything including plugins are working as expected I then upgrade my website the the newer theme and upload and overwrite the newly updated and customised templates to my live websites child theme.
Good luck with the upgrade