Dennis
Forum Replies Created
-
Thank you.
The language of my site is not english and I don’t think you can work with it’s admin. ??
I will try to inspect for Javascript error myself.
Forum: Plugins
In reply to: [WP Job Manager] Using with RTL LanguagesThank you.
I will try it.
I’m using buddyboss
No. this is my last plugin added. I’m using it with BuddyBoss and I’m using firefox (last version). I have not any problem with it.
And a wierd thing: I have this problem only in “Header” box. I can write and edit on “Body” box normally.
- This reply was modified 1 year, 10 months ago by Dennis.
this is the code snippet that I added to header:
<script src="https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.min.js"></script> <script> jQuery.noConflict(); jQuery( document ).ready( function( $ ) { // Fixed Layout var $grid = jQuery('.gv-diy-container').isotope({ // options… itemSelector: '.gv-diy-view', masonry: { columnWidth: 100 } }); // layout Isotope after each image loads $grid.imagesLoaded().progress( function() { $grid.isotope('layout'); }); }); </script>
- This reply was modified 1 year, 10 months ago by Dennis.
Forum: Plugins
In reply to: [Verified Member for BuddyPress] Change icon sizeI add this code in CSS and works. But: this code resize the blue circle but not the white checkmark (the size of checkmark dosnt change).
And a question: why not use only the last part of code?
.bp-verified-badge{ width:12px; height:12px; }
Forum: Plugins
In reply to: [Verified Member for BuddyPress] Change icon sizeThank you. Happy New Year.
- This reply was modified 1 year, 11 months ago by Dennis.
I have this problem too.
Any news about the update?Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] Using YARPP with GravityFormThanks for your reply.
Ok. And what do you think about this plugin:
https://www.ads-software.com/plugins/gravity-forms-custom-post-types/Can I use YARPP with GravityForm with this plugin?
Forum: Plugins
In reply to: [Login Logout Menu] create a logout link somewhere other than nav-menuwhat a pity.
thank you
Forum: Plugins
In reply to: [Login Logout Menu] create a logout link somewhere other than nav-menuthank arsalan and zainab
I’m using “author” theme [https://www.ads-software.com/themes/author/].
It has a place for adding URL for social media account or any other URL that we want to put under the site logo.I want to add a “logout button” there. I can add normal wordpress logout url. but it redirect user to “are you sure …”.
Can I convert your plugin’s logout shortcode to URL so I can put it there?
Forum: Plugins
In reply to: [Login Logout Menu] create a logout link somewhere other than nav-menuthank arslan
I want to put the link on a certain widget that does not accept shortcode. It want a link.
Can I convert this shortcode to link?Forum: Plugins
In reply to: [Login Logout Menu] create a logout link somewhere other than nav-menuI added this to end of my function.php. it works fine but in this way: “it opens a new tab and loged out. but previous tab (with it’s content) remain open untill I refresh or close it manually.
add_action('check_admin_referer', 'logout_without_confirm', 10, 2); function logout_without_confirm($action, $result) { /** * Allow logout without confirmation */ if ($action == "log-out" && !isset($_GET['_wpnonce'])) { $redirect_to = isset($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : ''; $location = str_replace('&', '&', wp_logout_url($redirect_to)); header("Location: $location"); die; } }
- This reply was modified 2 years, 10 months ago by Dennis.
Forum: Plugins
In reply to: [Login Logout Menu] create a logout link somewhere other than nav-menui tried the snippet that page suggest.
it works. BUT
it open a new page for loging out (while the last page is remain open). I want to logout on the same pageForum: Plugins
In reply to: [Login Logout Menu] create a logout link somewhere other than nav-menuthank you.
this code works. BUT
it open a new page for loging out (while the last page is remain open). I want to logout on the same page- This reply was modified 2 years, 10 months ago by Dennis.
Forum: Plugins
In reply to: [Login Logout Menu] create a logout link somewhere other than nav-menuI read that. but it’s all about shortcode and not ‘url’ or ‘link’.