Giri
Forum Replies Created
-
AuthorPosts
-
Yes it will be included in next update.
Thanks
Yes you cannot copy and modify that file.
Sorry about that
You cannot use like this
<?php echo htmlspecialchars($redirect_to);?><?php echo ?var1=testing&var2=testing2;?>
You have to use this function.
https://developer.wordpress.org/reference/functions/add_query_arg/
So in your case it should be
value="<?php echo add_query_arg( array( 'var1' => 'testing', 'var2' => 'testing2', ), htmlspecialchars($redirect_to) ); ?>"
I’m not sure what you are trying to achieve is gonna work or not. But good luck.
Your ftp not working.
Please do the following.
Replace directory theme’s footer.php file
I mean this file: wp-content/themes/directory-starter/footer.php
with this one.
https://gist.github.com/mistergiri/dd38871ea2d9d0fe44fea4064e4a9162
And then add the following code in supreme directory’s functions.php file.
function sd_dt_footer_widget_class($classes) { return "col-lg-3 col-md-4"; } add_filter('dt_footer_widget_class', 'sd_dt_footer_widget_class');
Hi Danielle,
can you give me your ftp details and also give me the code you tried so far?
Thanks
I have asked stiofan last week to recreate that zip file and upload it. He was busy at that time. So he must have forgot it. I’ll remind him today. Sorry for the delay.
April 23, 2016 at 2:00 pm in reply to: Split: New DS Child Theme – Supreme Directory Preview #169370@iconraju, we think the bug is related to jetpack. Please try disabling that plugin. Let us know
April 23, 2016 at 1:01 pm in reply to: Split: New DS Child Theme – Supreme Directory Preview #169319When in Mobile mode, the Account Nav and Primary Menu Buttons are not responding in the Supreme Theme.
Unless you give us your site url, its hard for us to debug. So please post your site url.
When will the Supreme be released with all these bugs resolved?
early next week, mon/tue
Thanks
April 23, 2016 at 12:58 pm in reply to: Split: New DS Child Theme – Supreme Directory Preview #169317April 23, 2016 at 10:30 am in reply to: Split: New DS Child Theme – Supreme Directory Preview #169234@adele Those problems are fixed in development version. So please wait till next version.
Thanks
Hi there, I have fixed this issue. It will be available in next version. Please use this code in the meantime.
Geodirectory -> Design -> Scripts -> Custom style css code
@media (max-width: 992px) { .sd.blog .content-box.content-single article.hentry, .sd.category .content-box.content-archive article.hentry { float: left; margin: 0 3% 50px 3%; width: 44%; } } @media (max-width: 668px) { .sd.blog .content-box.content-single article.hentry, .sd.category .content-box.content-archive article.hentry { float: none; margin: 0 5% 50px 5%; width: 90%; } }
Is that happens only with whoop theme? can you switch your theme and let me know
You are welcome
In Whoop Options -> Custom css
Try with this code
header nav ul li:first-child a { padding-left: 8px !important; }
April 20, 2016 at 9:42 am in reply to: Discounts, Free Trials and Recurring Payments on Preview #166704Hi mark, This is what stiofan suggested.
Just copy the whole
geodir_publish_payment_listing_form_before_msg()
function.
Paste it in your child theme’s functions.php file.
Rename that function to something else.
Ex:
geodir_publish_payment_listing_form_before_msg_modified()
Do all the code customisation in your
geodir_publish_payment_listing_form_before_msg_modified()
function
Finally remove the original function using
geodir_publish_listing_form_before_msg
hook.
And then add your modified function using that same hook.
So your final code would look like
remove_action( 'geodir_publish_listing_form_before_msg', 'geodir_publish_payment_listing_form_before_msg', 1); add_action( 'geodir_publish_listing_form_before_msg', 'geodir_publish_payment_listing_form_before_msg_modified', 1); function geodir_publish_payment_listing_form_before_msg_modified() { //Your modified code goes here }
-
AuthorPosts