tarundeology
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ScrollMe] How to change section fullwidth backgroundThis can be done by styling the section ID (the one I created for Scrolling Menu in Customizer) using CSS.
??
Hi Hackbard,
Your plugin works perfectly until I open my site using Chrome (I’m developing my form using Firefox). Now I realize that the date field didnt show the placeholder, so user cannot know what is the date field is for.
My site is here: https://apply.misi.edu.my/
I found this fiddle but the problem using this js is the datepicker didnt show in Firefox.
Is this browser related issue, or the plugin? Please advice/help.
Forum: Plugins
In reply to: [Contact Form 7] How to drag & drop files for upload in formI also need this function. Can anyone help?
Forum: Plugins
In reply to: [Tipso] Using images instead of texthow do we put an image or other HTML elements in the tooltip content?
Forum: Plugins
In reply to: [qTranslate X] Removing "alternate language available" messageHello,
How do I remove this message completely? I just want to show the alternative content without the notice/message. Thanks.
Forum: Plugins
In reply to: [Codenovo Portfolio] How i can custom reorder category ….Found a solution. Simply install this plugin and custom arrange your custom taxanomy (portfolio categories). Hope it helps!
Forum: Plugins
In reply to: [Codenovo Portfolio] How i can custom reorder category ….Hello,
I’m also trying to achieve the same thing. I need to reorder the categories on top for filtering the portfolio. Can you help us?
Forum: Themes and Templates
In reply to: [Auberge] Mobile menu – close when clickedThanks Oliver!
I just thought that this feature should be included in your next update because I think having a fixed mobile menu is better for users experience. It’s good to know that this update is on its way.
Nevermind,
I just modify the CSS of close button to:
#cboxClose { background: url("images/close-bg.png") no-repeat scroll center center rgba(0, 0, 0, 0) !important; height: 4em !important; position: absolute !important; right: 0 !important; top: 0 !important; width: 4em !important; }
I found this code and try to put it like this:
<a onclick="document.getElementById('cboxOverlay').style.display='none';document.getElementById('fade').style.display='none'" href="javascript:void(0)" class="close">x</a>
But it only close the overlay, but not the content. Please help..
My project is here: https://www.msfood.com.my/v2-corp/
You can go to About Us and click Read More to see it in action. Currently I just put * click outside this box to close to close the lightbox but the client didnt like it. So I want to put the close button manually, say on top right of the container.
It’s not working Jeremy. Is it because I used the standalone version of Infinite scroll from Jetpack Plugin?
In the link you shared, the code that are being suggested is:
function jetpack_infinite_scroll_query_args( $args ) { $args['order'] = 'ASC'; $args['orderby'] = 'name'; return $args; } add_filter( 'infinite_scroll_query_args', 'jetpack_infinite_scroll_query_args' );
I’m not so familiar with PHP, and my guess is adding the code to my theme function.php. By adding my custom arguments, the code will look like this:
function jetpack_infinite_scroll_query_args( $args ) { $args['order'] = 'ASC'; $args['orderby'] = 'name'; $args['post_status'] = 'publish'; $args['post_type'] = 'product'; $args['meta_key'] = '_featured'; $args['meta_value'] = 'yes'; $args['posts_per_page'] = 10; return $args; } add_filter( 'infinite_scroll_query_args', 'jetpack_infinite_scroll_query_args' );
Is this the right way to do it?
Hi Jeremy,
I’ll give it a try and share the result here. Thanks!
I’ve checked in PHPMyAdmin and there’re at least 20 submission that is not captured in the database, but the email was sent.
Do you think that increasing the memory could fix this?