Accordion not collapsing - accordion

The sections on our 'meeting minutes' page aren't collapsing and I don't know what to do to fix this. I don't know HTML, or enough to be dangerous. Below is the HTML for the page - if somebody could point out where this is wrong or what needs to be changed / added I'd greatly appreciate it.
Thanks,
Stan
[tm_pb_section admin_label="section" transparent_background="on" allow_player_pause="off" inner_shadow="off" parallax="off" parallax_method="off" custom_padding="20px|20px|20px|20px" padding_mobile="on" make_fullwidth="off" use_custom_width="off" width_unit="on" make_equal="off" use_custom_gutter="off"][tm_pb_row admin_label="row" make_fullwidth="on" use_custom_width="off" use_grid_padding="on" width_unit="on" custom_padding="20px|20px|20px|20px" padding_mobile="off" allow_player_pause="off" parallax="off" parallax_method="off" make_equal="off" parallax_1="off" parallax_method_1="off" column_padding_mobile="on"][tm_pb_column type="4_4"][tm_pb_text admin_label="Text" text_orientation="left" use_border_color="off" border_color="#ffffff" border_style="solid"]
Board Meeting Minutes
[/tm_pb_text][/tm_pb_column][/tm_pb_row][tm_pb_row admin_label="Row" make_fullwidth="on" use_custom_width="off" use_grid_padding="on" width_unit="on" custom_padding="20px|20px|20px|20px" padding_mobile="off" allow_player_pause="off" parallax="off" parallax_method="off" make_equal="off" parallax_1="off" parallax_method_1="off" column_padding_mobile="on"][tm_pb_column type="4_4"][tm_pb_accordion admin_label="Accordion" use_border_color="off" border_color="#ffffff" border_style="solid" custom_padding="||20px|"]
[tm_pb_accordion_item title="2021"]
Annual Meeting Minutes
January
February
[/tm_pb_accordion_item]
[/tm_pb_accordion][tm_pb_accordion admin_label="Accordion" use_border_color="off" border_color="#ffffff" border_style="solid" custom_padding="||20px|"]
[/tm_pb_accordion_item]
[/tm_pb_accordion][/tm_pb_column][/tm_pb_row][/tm_pb_section]

Related

How to scroll down in Rselenium until a specific date appear in facebook

I a working with facebook and I want scroll one page until the first publication of 2020 appears. The problem is that I can't get the html text for each date at the same time that the code is scrolling down. This my code:
tryCatch({
Sys.sleep(2)
suppressMessages({
vermas <- remDr$findElement("css", "body")
fecha_mirar <- remDr$findElement("css",".x4k7w5x.x1h91t0o.x1h9r5lt.x1jfb8zj.xv2umb2.x1beo9mf.xaigb6o.x12ejxvf.x3igimt.xarpa2k.xedcshv.x1lytzrv.x1t2pt76.x7ja8zs.x1qrby5j")
fecha <- as.character(fecha_mirar$getElementText())
while(fecha != "[2020]"){
vermas$sendKeysToElement(list(key = "end"))
vermas$sendKeysToElement(list(key = "enter"))
Sys.sleep(5)
fecha_mirar <-remDr$findElement("css",".x4k7w5x.x1h91t0o.x1h9r5lt.x1jfb8zj.xv2umb2.x1beo9mf.xaigb6o.x12ejxvf.x3igimt.xarpa2k.xedcshv.x1lytzrv.x1t2pt76.x7ja8zs.x1qrby5j")
fecha <- as.character(fecha_mirar$getElementText())
}
})
},
error = function(e) {
NA_character_
}
)
The idea of the code is scroll the facebook page until one publication is from 2020 and the code give me a NA to continue with other code.
The problem is that the only date that I get is from the first publication and I can't figure out how to solve it.
Thanks community!!!
PD: You can check the code in any facebook page.

Query Waypoints need to scroll in both directions

I am using jQuery-waypoints and the infinite shortcut to load listings on my page. I have this all working and am trying to comply with Google's Guidelines on this by using pushState() to alter the browsers history. This is all working fine using this.
if ($('#list-col.active .list-col-content').length > 0 && !wayPoints) {
initWaypoint();
}
;
function initWaypoint() {
let infinite = new Waypoint.Infinite({
element: $('#list-col.active .list-col-content'),
offset: function () {
return this.context.innerHeight() - this.adapter.outerHeight() + 2000
},
onAfterPageLoad: function (direction) {
var last = $('.page-loaded:last');
last.waypoint(function (direction) {
if (direction == 'down') {
if (window[window.GoogleAnalyticsObject]) {
ga('set', 'page', last.data('url'));
ga('send', 'pageview');
console.log('pageview ' + last.data('url'));
}
history.pushState('', last.data('title'), last.data('url'));
} else {
history.pushState('', last.data('prev_title'), last.data('prev_url'));
}
})
}
});
wayPoints = true;
};
Here is my issue/questions.
The new browser's URL is now https://www.example.com/listingpage?page=15. Per Google's Guidelines, that "component page" needs to load content with page 15's listings, and only page 15's content. No problem, I can do that. But now I have an issue with the content BEFORE page 15.
I now need to scroll up, loading more content (now above the existing content) as the user scrolls up.
I am at a loss on how to add a second infinite (really finite since it is loading down to 0) scroller that loads pages as you scroll up the page.
I know I am not the first to encounter this so any help or direction would be appreciated.
No responses in several days so I researched and found an answer on my own. Posting some info here in case anyone else has same issue with infinite scrolling in both directions.
Best solution I found was on Google's Infinite Scroll search-friendly recommendations. That pages lists an infinite scroll with pagination demo. I had to do some modification for my specific use, but it is a great example and obviously following Google's recommendation is a good way to go.
Hope this helps someone.

How to add Bullet in the newline text in Webview

I need to know how to add bullets in the web view as we can see in the MSWord Doc files.
I am trying to find out this thing but could not find any success.
If anyone can help then please help me out from this....
Here is my code
function moveCursorToNextLine(x, y, newX, newY) {
var label3= iOS.UI.createLabel({
text:'speaks and \nsolution world oneself has ',
color:'black',
height:'auto',
width:'auto',
left:232,
font:{fontSize:14},
//textAlign:'center',
top:480
});
view.add(label3);
}
I am waiting for your valuable help
try this :
[webView stringByEvaluatingJavaScriptFromString:#"document.execCommand(\"insertunorderedlist\")"];

How to hide Y-axis values in invientcharts

Is there a way to hide a InvientChart NumberYAxis? The yaxis is meaningless on logic analyzer display.
Don't know about hiding simply with a method, but this should work.
InvientChartsConfig.YAxisDataLabel label = new InvientChartsConfig.YAxisDataLabel(true);
label.setFormatterJsFunc("function() { return ''; }");
yaxis.setLabel(label);
It should replace the numeric values with empty space.
#miq, sorry for late reply, I don't know whether that works. But after serious struggling, I did this..
YAxisDataLabel yLabel=new YAxisDataLabel();
yLabel.setEnabled(false);
yAxis.setLabel(yLabel);
And its working like charm...anyways thanks for your answer. I will consider that and will try it int future..

JQuery UI Datepicker Current Day

My page uses a JQuery UI Datepicker and loads with the current day selected and weekends and selected dates restricted.
I would like the current selected day to become unavailable at 2pm and the day move forward.
Can anyone help.
I would just use a variable for the the minDate
var dt = new Date();
if (dt.getHours() > 14) {
dt = dt.setDate(dt + 1); // go one day in the future
}
$(selector).datepicker({minDate: dt});
You'd just need to use the real javascript Date class methods - which I haven't used in a little while.