janmalagucute
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: English language index of localised MO files?The problem here is not how to change between language but how to get started with a foreign language. mo files of foreign language is on foreign language site. hard to navigate and get what is needed.
the idea is to get foreign language files on an english site.
thanks
Forum: Requests and Feedback
In reply to: English language index of localised MO files?I am having the same experience. Would be nice to have mo files stored in english website because developer is not always speaking the language they are developing.
Forum: Fixing WordPress
In reply to: How to pass post content to external pagefor example I have a page with text. Lyrics to be specific.
I want to have a button or link that will enable me to view the text content of the same post in larger format like this
https://addcit.mcgi.me/sandbox/lyricsonline/promptertest.htmlThanks
Forum: Fixing WordPress
In reply to: How to pass post content to external pageanyone please!
thanks
How do you generate the numbers?
Is there a table that saves the last final count or everything is added up and calculated every time you need to view it?
Thanks
thanks
I am planning to use your plugin as a counter to my video pages.
I need to separate the all time views and the daily views like the all time page is on the left bottom of the video player and the daily views is on the right bottom side of the player.Currently I just put it under the title of every post but It would look more elegant if the count is at the bottom of my player like in youtube.
Thanks
Yest the post is about videos and other items.
I want to create a category based on top 10 post.
When I have a category based on top 10 post, It will become really easy to pull the top ten post and can display it as gallery, post list, etc.
Thanks
thanks
I have a gallery type categories titled “Popular Video”. It is basically the top 10 videos on my site but since there is no automatic category for top 10 post from your plugin. I include exclude items in my “Popular Videos” category manually but it is the same list as your top 10 post.
Thanks
Forum: Themes and Templates
In reply to: Child theme referencing child filesahh… there it is.. ok.. thanks.. now I got it.
Thanks a lot.
Forum: Themes and Templates
In reply to: Child theme referencing child filesstylesheet and template files
Forum: Themes and Templates
In reply to: Child theme referencing child filesSorry. Perhaps I am not using the right words.
let say I want to display image01.jpg this code..
images/image01.jpg
if I am using the mother theme, that will load
mother-theme/images/image01.jpgIf I want to load
child-theme/images/image01.jpgaccording to the article i posted on my original question I need to use
require_once( get_stylesheet_directory(). '/my_included_file.php' );
to be able to reference my files inside the child theme.
Here’s the exact words in the article…
Referencing / Including Files in Your Child Theme
When you need to include files that reside within your child theme’s directory structure, you will use get_stylesheet_directory(). Because the parent template’s style.css is replaced by your child theme’s style.css, and your style.css resides in the root of your child theme’s subdirectory, get_stylesheet_directory() points to your child theme’s directory (not the parent theme’s directory).
Here’s an example, using require_once, that shows how you can use get_stylesheet_directory when referencing a file stored within your child theme’s directory structure.
require_once( get_stylesheet_directory(). '/my_included_file.php' );
now my question is how can I use that code?
Which file should I edit?Thanks.
and sorry if I am writing it poorly. Im not a native english speaker.
Forum: Themes and Templates
In reply to: Child theme referencing child filesHi,
Thanks for your reply. I know that code will include a file so that I can reference my images stored inside my child theme folder instead of the images inside the mother theme folder.
What I do not know is Which file should I edit to add that code?
header.php, index.php, etc… which file and what line specifically?
Thanks
Forum: Fixing WordPress
In reply to: How to make shortcodeThanks for that sample code. I didn’t realize that php can output ” character when enclosed inside ‘ ‘
Thanks a lot. I will try to make one simple shortcode when I get home and let you know.
Thanks again