m4group
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Vibes - Database Manager for Forms] Create Post from DB entrythat would be great!
I look forward to it
Thank you
Forum: Plugins
In reply to: [The Events Calendar] The events Calendar List|Month|DayI’m having similar issues.
When I visit the Events page https://gayfriendlymarket.com/community/events/
The default Photo View comes up.
When I use the Events View Selector button, it doesn’t matter which one I select, the page is refreshed to the home with an appended code https://gayfriendlymarket.com/community/?post_type=tribe_events&eventDisplay=photo&name=community&hide_subsequent_recurrences=1If I instead select a View and Right Click open in a new tab I get a 404 error because the url has other code appended https://gayfriendlymarket.com/community/events/month/?attachment=events&hide_subsequent_recurrences=1
I cut the appended info off https://gayfriendlymarket.com/community/events/month/ and refresh and the page loads with the correct view.
Something is causing the View Switching to add code resulting in bad UX.
Is this a known issue in the recent update?
Please advise how to resolve this.
Thank you.
Forum: Plugins
In reply to: [Elementor Addons by Livemesh] Use an Icon for Filter instead of ALLBrilliant! That totally solved it!
Thank you so much.
Gwen
Forum: Plugins
In reply to: [Elementor Addons by Livemesh] Use an Icon for Filter instead of ALLWell I gave it another try by using the following code
.lae-block .lae-block-filter span:after {
cursor: pointer;
padding-left: 15px;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
display: inline-block;
font-family: ‘Font Awesome 5 Free’;
font-weight: 900;
speak: none;
font-style: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: “\f0c9”;
margin-right: -25px;
}This resulted in the 3 bars Icon being displayed into the right place within the filter block
But I am still seeing the
Span <ALL> and Dropdown which I want to exclude. I tried using a separate code but did not work
.lae-block-filter-more i.lae-icon-arrow-right3 {
display: none;
}Any advise on the last part to note show these?
Thanks,
GwenForum: Plugins
In reply to: [Elementor Addons by Livemesh] Use an Icon for Filter instead of ALLI tried your suggested code, but it placed a Star icon
-
before
my Block Header.
I think we are close though. For my footer at https://gayfriendlymarket.com/contact-gay-friendly-market/
What I am looking for is to completely replace the Block Filter
<div class=”lae-block-filter”><div class=”lae-block-filter-dropdown”><div class=”lae-block-filter-more”><span>All</span>
with the Fa Bars Icon which I believe is content: “\f0c9″;I see the css for the Filter in the https://gayfriendlymarket.com/community/events/ Footer hints at the solution for their css ul.shortcode-filter but I am not sure which parts would apply to achieve my solution
ul.shortcode-filter {
display: inline-block;
padding: 0;
margin-bottom: 0;
}ul.shortcode-filter li {
/*white-space: nowrap;
font-size:13px;
font-weight:300;
cursor:pointer;
display:block;
padding:0;
margin:10px;
line-height:1;*/
}ul.shortcode-filter > li {
font-size: 13px;
display: inline-block;
margin: 0 7px;
cursor: pointer;
height: 35px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
}ul.shortcode-filter > li.active {
font-weight: bold;
}ul.shortcode-filter > li.flexMenu-viewMore {
margin-right: 0;
padding-right: 0;
width: 15px;
text-align: center;
}ul.shortcode-filter > li.flexMenu-viewMore.active ul.flexMenu-popup {
margin-top: 0px;
opacity: 1;
display: block;
}ul.shortcode-filter > li.flexMenu-viewMore.active > a > i.fa.fa-bars:before {
content: ‘\F00D’;
}ul.shortcode-filter > li.flexMenu-viewMore i {
color: #9e9e9e;
font-weight: 300;
font-size: 14px;
}ul.shortcode-filter > li > ul.flexMenu-popup {
position: absolute;
display: block;
z-index: 10;
padding: 0;
margin: 0;
margin-top: -10px;
opacity: 0;
right: 0;
top: 35px;
background-color: #fff;
border: solid 1px #eee;
}ul.shortcode-filter > li > ul.flexMenu-popup li {
line-height: 15px;
border-bottom: none;
text-align: right;
margin: 0;
padding: 10px 20px 10px 25px;
list-style-type: none;
}ul.shortcode-filter > li > ul.flexMenu-popup li:hover {
background-color: #f4f4f4;
}ul.shortcode-filter:after {
content: ”;
display: table;
clear: both;
}Can you advise further based on this?
Thanks,
GwenForum: Plugins
In reply to: [Elementor Addons by Livemesh] Use an Icon for Filter instead of ALLsorry I put 2 links in the page I need help with and it looks like they were joined
https://gayfriendlymarket.com/community/events/is the page I want to apply the Icon to replace ALL for the 2 right hand filters in the footer.
Similar to how it is applyed as a style by my Javo theme here https://gayfriendlymarket.com/contact-gay-friendly-market/ in the footer filters
Thanks,
Gwen
Forum: Plugins
In reply to: [Event Single Page Builder For The Event Calendar] Duplicating Related EventsExcellent! That totally worked.
Thank you
Bingo, that did the trick. Thanks Richard!
Thanks for the code-snippet advice Richard.
I have installed plugin, added and activated code. But not getting the expected redirect after submitting a new test job.
Is the url coding correct here?
add_filter( ‘job_manager_job_submitted’, function() {
if ( wp_redirect( job_manager_get_permalink( ‘https://gayfriendlymarket.com/membership-account/member-job-dashboard/’ ) ) ) {
exit;
}
}, 20 );I don’t think the code shows correctly in this thread, but here it is as a screenshot https://imgur.com/lti6jjS
Thanks!
- This reply was modified 4 years, 11 months ago by m4group.
Sorry for us non techies, can you please clarify the steps are as follows:
1. I create a new redirectToJD.php file
2. If I want to use a specific url I can modify code to
add_filter( ‘job_manager_job_submitted’, function() {
if ( wp_redirect( https://mysite.com/custom-page ) ) ) {
exit;
}
}, 20 );3. I upload this file to my cpanel public_html/wp-content/plugins/wp-job-manager/templates folder
4. No other steps required
Much appreciated.
ThanksForum: Plugins
In reply to: [SEO Ultimate] [Plugin: SEO Ultimate] Post title in Meta DescriptionCan you please tell me what I need to use to autogenerate the post meta description?
{excerpt} does nothing{excerpt::autogen} works but is duplicating the post title, any modification to have it pull without repeating the title?
Appreciate it,
ThanksForum: Plugins
In reply to: [SEO Ultimate] [Plugin: SEO Ultimate] Post title in Meta Descriptionyadmin {excerpt::autogen} works but is duplicating the post title, any modification to have it pull without the title?
{excerpt} does nothing
Thanks
That worked perfectly thank you, and noticed you cleaned up the wording too.
Can you tell me what you added in case I ever have to “force” this in the future?
Now the mobile world can enjoy it too!
Gwen
yes I do, this a mobile page so please use a mobile when you click it or you will be re-directed to a desktop page.
url is https://blueflameventures.ca/mlp/lgbt-reviews/
I placed the [WPCR_INSERT] at the bottom of the page. You will notice the form and of course the comment, there are no reviews yet, which is not true, since the [WPCR_SHOW POSTID=”ALL” NUM=”20″ SNIPPET=”” MORE=”” HIDECUSTOM=”0″ HIDERESPONSE=”0″] above is already displaying live reviews.
I hope this helps to identify the fix.
Thanks again,
Gwen