billduffy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Enigma] Carousel Image and @mediaI must say that the support for this theme is outstanding!!! Thank you!
Forum: Themes and Templates
In reply to: [Enigma] Carousel Image and @mediaHi. I’m still on localhost while I work out some bugs. I’m using latest Enigma free on latest WP version. I like the image at full computer screen set at 500px high but when I go to tablet and less screen size the image stays at 500px. No matter what @media size I try I have not been able to change the 500px back to default.
Forum: Themes and Templates
In reply to: [Enigma] Modifying Top Menu BarThank you !!!
Forum: Themes and Templates
In reply to: [Enigma] Can I disable the CSS editor in Customizer?Thanks w_s. I cut all CSS out from customizer editor and put it in style.css. None of my css worked. I tried repeating and same so I posted question.
The problem was my browser cache. I did a ctrlF5 and my style.css worked. Everything except changing the search button color. For some reason the following would only work in the Customizer CSS editor:
.btn-search {
background: #C3C3C3 !important;
}Forum: Themes and Templates
In reply to: [Enigma] How to Remove Pagination PleaseThanks w_s. I put this in my child theme function.php and it worked:
function remove_my_parent_theme_function() {
remove_action(‘next_post_link’, ‘my_parent_theme_function’);
}Forum: Themes and Templates
In reply to: [Enigma] How to Remove Pagination PleaseHello weblizar_support.
/*<?php next_post_link(‘%link »’); ?>*/
If I comment out the above in the parent function.php file, the next button is removed while pagination remains in posts.
I am now trying to get this into my child theme but info on removing stuff from function.php in child themes is sketchy.
Can you please tell me how to get this into my child theme. Thanks!
Forum: Themes and Templates
In reply to: [Enigma] How to Remove Pagination PleaseIn my parent function.php this code below starts on line 352 ends line 363. I also don’t know exactly what you mean by commenting it. Could you just take the code below and modify it so I know what you mean. And should I paste it in my child theme function.php file? Thanks!
/****— Navigation for Single —***/
function weblizar_navigation_posts() { ?>
<div class=”navigation_en”>
<nav id=”wblizar_nav”>
<span class=”nav-previous”>
<?php previous_post_link(‘« %link’); ?>
</span>
<span class=”nav-next”>
<?php next_post_link(‘%link »’); ?>
</span>
</nav>
</div>Forum: Themes and Templates
In reply to: [Enigma] How to Remove Pagination PleaseHello weblizar_support…
1. I’m confident that removing it from post-content.php will achieve my mission.
2. No blog on main page. Just widgets showing posts from my multiple category archive blogs. So I would like to have pagination in posts on my category archive blog but not at the bottom of a category archive blog page with posts on it.
Thanks!
Forum: Themes and Templates
In reply to: [Enigma] How to Remove Pagination PleaseI’m on localhost right now. I’ll go live in a month but if possible would like to solve problem before that. Also it’s the “Category Archive” page that I’m using for the post page (blog).
I’m using an Enigma child theme with a dynamic main page (without blog) so for a blog (I don’t need comments) I set up a Cat Archive page with it’s own template to simulate a blog. I made 4 of these pseudo blogs for the site. No plugins used to achieve any of this but a tab menu widget on the sidebar.
I realize you are busy and will follow your recommendation on how to proceed. Is there anything I could post or should I just wait until we’re live? Thanks!
Forum: Themes and Templates
In reply to: [Enigma] Footer Menu List Style ModificationWorked. Thank you!