prof-anonymous
Forum Replies Created
-
Good morning,
The only method I used is the selection of the pdf import button that is under import options in the knowledge section of the plugin. Does the submission of the pdf to the database have a different methodology that what I just described? If yes, can you tell me how to do it?
The pdf is in fact a text pdf and publicly accessible via URL.
Good day,
I do not see the PDFs populating in the knowledge database. I am currently using the unpaid version.
Forum: Plugins
In reply to: [YMC Filter] Custom Layout not workingAdded all the code to the fnctions.php fule and it is currently working. Thank you for your assistance.
Forum: Plugins
In reply to: [YMC Filter] Custom Layout not workingBased on your reply, I have added this code to my functions.php file.
function my_custom_post_layout($layout, $post_id, $filter_id, $increment_post, $arrOptions) {
$layout = get_the_title($post_id). ‘gertretretert’;
$layout .= wp_trim_words(get_the_content($post_id), 30);
$layout .= ‘Read More’;
// $layout .= ‘Open Popup‘;
return $layout;
}In the Advanced section of the settings for this plugin, I added the following code to the custom actions field.
add_filter(‘ymc_post_custom_layout_476_1’, ‘my_custom_post_layout’, 10, 5);
Below is the message I am still seeing on each post card in the filter and grid.
Use a filter:ymc_post_custom_layout_476
ymc_post_custom_layout_476_1to override post template.
Example:add_filter(“ymc_post_custom_layout_476_1”, “callback_function”, 10, 5);See documentation.Thank you for your continued assistance.