tarundeology
Forum Replies Created
-
Oh I see the customise email template is in AST Pro
That’s awesome!!!
How do I customise the woocommerce note email content? I need to put the link to check the shipment.Sorry..
I forgot to mention that the small cart will only show in mobile view.
Thanks.I tried to add the column by adding the code below in functions.php but the membership level is still now showing. I guess I didnt add the function you suggest above properly.
function new_modify_user_table( $column ) { $column['jenis_keahlian'] = 'Jenis Keahlian'; return $column; } add_filter( 'manage_users_columns', 'new_modify_user_table' ); function new_modify_user_table_row( $val, $column_name, $user_id ) { switch ($column_name) { case 'jenis_keahlian' : return pmpro_getMembershipLevelForUser( $user_id ); default: } return $val; } add_filter( 'manage_users_custom_column', 'new_modify_user_table_row', 10, 3 );
Can you show me how to add the function properly please? I’m not a programmer so I’m a bit lost when it comes to syntax.
Thanks in advance @andrewza
Thanks @andrewza for your suggestion. I will try it.
I wonder, why the membership level gone after I added the snippet above? The column is there, but the level for each member is gone. I think its cleaner if I didnt interfere or override the member level that’s already there.
Forum: Plugins
In reply to: [Athena Post Expiration] Can’t save optionsAny update on this? I just tried but still cant go thru the tabs.
Forum: Plugins
In reply to: [Contact Form DB] Capture Page titleI have the very same problem. I used the form in many pages so I need to know which page the form was submitted from. In my database, the last submission that capture page title is on 2018-02-24 01:27:07 +08:00 (Kuala Lumpur Time).
We really need this. Is there anyway to work around?
Please help!!
Forum: Plugins
In reply to: [Cache Enabler] Not Compatible with Visual ComposerI disable and enable few times, now it works. I wonder why…
Thank you. I will discuss with my team.
Forum: Themes and Templates
In reply to: [Mise] Using Push Sidebar as One Page MenuHello,
Since I cannot use the push sidebar, I used the main navigation toggle menu button for mobile and I added this js in footer.php and it finally works!
<script> jQuery(document).ready(function($){ $('.main-navigation li a').on("click", function(){ $('.main-navigation').removeClass('toggled'); $("button.menu-toggle").attr("aria-expanded","false"); $('.main-navigation').removeClass('toggled'); $('button.menu-toggle .fa.fa-lg').removeClass('fa-times'); $('button.menu-toggle .fa.fa-lg').addClass('fa-bars'); }); }); </script>
Just sharing if anyone want to achieve the same. Thanks!
Forum: Themes and Templates
In reply to: [Mise] Using Push Sidebar as One Page MenuI added your code to header.php before
wp_head();
but still not close when clicked. :'(I tried replacing the code with code below, but still not close.
<script type="text/javascript"> jQuery(document).ready(function($){ $('#tertiary.widget-area.nano.has-scrollbar.yesOpen .menu li a').on("click", function(){ $('body, #tertiary.widget-area, .push-background, .opacityBox, .hamburger').toggleClass('yesOpen'); }); </script>
please…. please……
Forum: Plugins
In reply to: [WP-Polls] How to hide number of Votes, showing only %Ahaa. I didnt realise that. Thank you! Awesome!!!
Forum: Plugins
In reply to: [WP Posts Carousel] Post’s featured image as background of containerI found temporary solution, although not update-safe. I edited carousel-generator.class.php. Replace line 368 with:
$out.= '<div class="wp-posts-carousel-container" style="background: url(' . $image[0] . ') no-repeat center center; background-size: cover;">';
Then in my css, I set min-height for the container:
.simple-theme.wp-posts-carousel .wp-posts-carousel-slide, #about .simple-theme.wp-posts-carousel .wp-posts-carousel-container { padding: 0; min-height: 460px; }
I set the carousel to not display post image. Here’s my shortcode:
[wp_posts_carousel template="simple.css" post_types="post" all_items="12" show_only="newest" exclude="" posts="" ordering="desc" categories="" relation="and" tags="" show_title="true" show_created_date="true" show_description="false" allow_shortcodes="false" show_category="false" show_tags="false" show_more_button="false" show_featured_image="false" image_source="full" image_height="" image_width="" items_to_show_mobiles="1" items_to_show_tablets="2" items_to_show="4" slide_by="3" margin="10" loop="true" stop_on_hover="true" auto_play="false" auto_play_timeout="4500" auto_play_speed="300" nav="true" nav_speed="400" dots="true" dots_speed="800" lazy_load="true" mouse_drag="true" mouse_wheel="true" touch_drag="true" easing="linear" auto_height="true" custom_breakpoints=":"]
I don’t like this because it is not upgrade-safe, but it works on my site. Hope it helps anyone who have the same concern as mine. ??
Forum: Themes and Templates
In reply to: [ScrollMe] How to remove sections?The section is hidden using CSS, but the button/arrow to next section is still visible, and when you clicked, it will go to the first section slider, hit next again will go to second section, then only it the next arrow disappear. It’s like the theme still forcing to accept 7 sections altogether.
Is there a way to remove unwanted section properly?
Forum: Themes and Templates
In reply to: [ScrollMe] How to remove sections?As a workaround, I can hide the sections that I dont want using CSS.
#about { display:none; }
But it’ll be better if I can remove the sections that I dont need instead of just hiding it.